forked from argoproj/argo-helm
feat(argocd-notification): add context variable for templating purpose (#713)
* add context variable for templating purpose Signed-off-by: Sergiy Gavrylenko <bigboo@bbq.agency> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> * update version of argocd-notification chart Signed-off-by: Sergiy Gavrylenko <bigboo@bbq.agency> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> * fix: spec.preserveUnknownFields must be set to false to allow upgrades from v1beta1 (#709) Signed-off-by: Jack Andersen <jandersen@plaid.com> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> * feat: add resources to argo-rollouts deployment (#711) - add destinationrule to clusterrolebinding Signed-off-by: Hui Kang <hui.kang@salesforce.com> Co-authored-by: Hui Kang <hui.kang@salesforce.com> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> * chore(argo-events): update argo-events to 1.3.3 (#720) Signed-off-by: Alec Rajeev <alecinthecloud@gmail.com> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> * chore(argo-cd): upgrade redis-ha version to 4.12.14 (#710) Signed-off-by: Aniek Gul <aniekgul@hotmail.com> Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> * Update charts/argocd-notifications/Chart.yaml Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> * Update charts/argocd-notifications/templates/configmap.yaml Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com> Signed-off-by: Sergiy Gavrylenko <sgavrylenko@domovoy.org.ua> Co-authored-by: Sergiy Gavrylenko <bigboo@bbq.agency> Co-authored-by: jandersen-plaid <52045989+jandersen-plaid@users.noreply.github.com> Co-authored-by: cskh <huikang209@gmail.com> Co-authored-by: Hui Kang <hui.kang@salesforce.com> Co-authored-by: Alec Rajeev <alecinthecloud@gmail.com> Co-authored-by: aniekgul <aniekgul@hotmail.com> Co-authored-by: Oliver Bähler <oliverbaehler@hotmail.com>main
parent
19d019039c
commit
6735d66f1a
|
@ -3,7 +3,7 @@ appVersion: 1.1.1
|
|||
description: A Helm chart for ArgoCD notifications, an add-on to ArgoCD.
|
||||
name: argocd-notifications
|
||||
type: application
|
||||
version: 1.2.0
|
||||
version: 1.3.0
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/docs/assets/argo.png
|
||||
keywords:
|
||||
|
|
|
@ -8,6 +8,9 @@ metadata:
|
|||
data:
|
||||
context: |
|
||||
argocdUrl: {{ .Values.argocdUrl | quote }}
|
||||
{{- with .Values.context }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- with .Values.notifiers }}
|
||||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
||||
|
@ -21,4 +24,4 @@ data:
|
|||
{{- with .Values.triggers }}
|
||||
{{- toYaml . | nindent 2 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
|
|
@ -19,6 +19,11 @@ nodeSelector: {}
|
|||
updateStrategy:
|
||||
type: Recreate
|
||||
|
||||
context:
|
||||
# Add custom values into context
|
||||
# region: east
|
||||
# environmentName: staging
|
||||
|
||||
secret:
|
||||
# Whether helm chart creates controller secret
|
||||
create: true
|
||||
|
|
Loading…
Reference in New Issue