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>
This commit is contained in:
parent
19d019039c
commit
6735d66f1a
3 changed files with 10 additions and 2 deletions
|
@ -3,7 +3,7 @@ appVersion: 1.1.1
|
||||||
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.2.0
|
version: 1.3.0
|
||||||
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:
|
||||||
|
|
|
@ -8,6 +8,9 @@ metadata:
|
||||||
data:
|
data:
|
||||||
context: |
|
context: |
|
||||||
argocdUrl: {{ .Values.argocdUrl | quote }}
|
argocdUrl: {{ .Values.argocdUrl | quote }}
|
||||||
|
{{- with .Values.context }}
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.notifiers }}
|
{{- with .Values.notifiers }}
|
||||||
{{- toYaml . | nindent 2 }}
|
{{- toYaml . | nindent 2 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
@ -21,4 +24,4 @@ data:
|
||||||
{{- with .Values.triggers }}
|
{{- with .Values.triggers }}
|
||||||
{{- toYaml . | nindent 2 }}
|
{{- toYaml . | nindent 2 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -19,6 +19,11 @@ nodeSelector: {}
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
type: Recreate
|
type: Recreate
|
||||||
|
|
||||||
|
context:
|
||||||
|
# Add custom values into context
|
||||||
|
# region: east
|
||||||
|
# environmentName: staging
|
||||||
|
|
||||||
secret:
|
secret:
|
||||||
# Whether helm chart creates controller secret
|
# Whether helm chart creates controller secret
|
||||||
create: true
|
create: true
|
||||||
|
|
Loading…
Reference in a new issue