Merge branch 'supportCustomRules' of github.com:loreleimccollum-work/argo-helm into supportCustomRules

Signed-off-by: Lorelei McCollum <lorelei.mccollum@endurance.com>
This commit is contained in:
Lorelei McCollum 2021-05-12 08:16:50 -04:00
commit 53c089aa01
3 changed files with 10 additions and 2 deletions

View file

@ -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:

View file

@ -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 }}

View file

@ -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