Add icon and signingSecret support
This commit is contained in:
parent
c4e4d1439b
commit
dca94a4e78
3 changed files with 8 additions and 1 deletions
|
@ -3,7 +3,7 @@ appVersion: 0.7.0
|
||||||
description: A Helm chart for ArgoCD notifications, an add-on to ArgoCD.
|
description: A Helm chart for ArgoCD notifications, an add-on to ArgoCD.
|
||||||
name: argocd-notifications
|
name: argocd-notifications
|
||||||
type: application
|
type: application
|
||||||
version: 1.0.2
|
version: 1.0.3
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
@ -12,5 +12,7 @@ stringData:
|
||||||
slack:
|
slack:
|
||||||
token: {{ .Values.secret.notifiers.slack.token }}
|
token: {{ .Values.secret.notifiers.slack.token }}
|
||||||
username: {{ .Values.secret.notifiers.slack.username }}
|
username: {{ .Values.secret.notifiers.slack.username }}
|
||||||
|
icon: {{ .Values.secret.notifiers.slack.icon }}
|
||||||
|
signingSecret: {{ .Values.secret.notifiers.slack.signingSecret }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -35,6 +35,11 @@ secret:
|
||||||
token:
|
token:
|
||||||
# Optional override username
|
# Optional override username
|
||||||
username:
|
username:
|
||||||
|
# Optional override icon
|
||||||
|
icon:
|
||||||
|
# Options override signingSecret: https://argoproj-labs.github.io/argocd-notifications/recipients/slack-bot/
|
||||||
|
signingSecret:
|
||||||
|
|
||||||
|
|
||||||
resources: {}
|
resources: {}
|
||||||
# limits:
|
# limits:
|
||||||
|
|
Loading…
Reference in a new issue