Skip to content

Commit

Permalink
feat(argocd-notification): add context variable for templating purpose (
Browse files Browse the repository at this point in the history
#713)

* add context variable for templating purpose

Signed-off-by: Sergiy Gavrylenko <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

* update version of argocd-notification chart

Signed-off-by: Sergiy Gavrylenko <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

* fix: spec.preserveUnknownFields must be set to false to allow upgrades from v1beta1 (#709)

Signed-off-by: Jack Andersen <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

* feat: add resources to argo-rollouts deployment (#711)

- add destinationrule to clusterrolebinding

Signed-off-by: Hui Kang <[email protected]>

Co-authored-by: Hui Kang <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

* chore(argo-events): update argo-events to 1.3.3 (#720)

Signed-off-by: Alec Rajeev <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

* chore(argo-cd): upgrade redis-ha version to 4.12.14 (#710)

Signed-off-by: Aniek Gul <[email protected]>

Co-authored-by: Oliver Bähler <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

* Update charts/argocd-notifications/Chart.yaml

Co-authored-by: Oliver Bähler <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

* Update charts/argocd-notifications/templates/configmap.yaml

Co-authored-by: Oliver Bähler <[email protected]>
Signed-off-by: Sergiy Gavrylenko <[email protected]>

Co-authored-by: Sergiy Gavrylenko <[email protected]>
Co-authored-by: jandersen-plaid <[email protected]>
Co-authored-by: cskh <[email protected]>
Co-authored-by: Hui Kang <[email protected]>
Co-authored-by: Alec Rajeev <[email protected]>
Co-authored-by: aniekgul <[email protected]>
Co-authored-by: Oliver Bähler <[email protected]>
  • Loading branch information
8 people authored May 11, 2021
1 parent 19d0190 commit 6735d66
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/argocd-notifications/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion charts/argocd-notifications/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -21,4 +24,4 @@ data:
{{- with .Values.triggers }}
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end }}
{{- end }}
5 changes: 5 additions & 0 deletions charts/argocd-notifications/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6735d66

Please sign in to comment.