chore(argo-rollouts): add option to disable creation of notifications configmap (#2849)
* chore(argo-rollouts): add option to disable creation of notifications configmap This allows for using the upstream notifications configmap from https://github.com/argoproj/argo-rollouts/blob/master/manifests/notifications-install.yaml Signed-off-by: Roland Kool <rkool@bol.com> * chore: update changelog Signed-off-by: Roland Kool <rkool@bol.com> * chore: fix chart version bump Signed-off-by: Roland Kool <rkool@bol.com> --------- Signed-off-by: Roland Kool <rkool@bol.com> Co-authored-by: Aikawa <yu.croco@gmail.com>
This commit is contained in:
parent
89bc396b55
commit
87e6dd9b63
4 changed files with 9 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v1.7.1
|
appVersion: v1.7.1
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.37.2
|
version: 2.37.3
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -19,4 +19,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Added traefik.io apiGroup to Role and ClusterRole
|
description: Added setting to disable creation of the notifications ConfigMap
|
||||||
|
|
|
@ -57,6 +57,7 @@ For full list of changes please check ArtifactHub [changelog].
|
||||||
| keepCRDs | bool | `true` | Keep CRD's on helm uninstall |
|
| keepCRDs | bool | `true` | Keep CRD's on helm uninstall |
|
||||||
| kubeVersionOverride | string | `""` | Override the Kubernetes version, which is used to evaluate certain manifests |
|
| kubeVersionOverride | string | `""` | Override the Kubernetes version, which is used to evaluate certain manifests |
|
||||||
| nameOverride | string | `nil` | String to partially override "argo-rollouts.fullname" template |
|
| nameOverride | string | `nil` | String to partially override "argo-rollouts.fullname" template |
|
||||||
|
| notifications.configmap.create | bool | `true` | Whether to create notifications configmap |
|
||||||
| notifications.notifiers | object | `{}` | Configures notification services |
|
| notifications.notifiers | object | `{}` | Configures notification services |
|
||||||
| notifications.secret.annotations | object | `{}` | Annotations to be added to the notifications secret |
|
| notifications.secret.annotations | object | `{}` | Annotations to be added to the notifications secret |
|
||||||
| notifications.secret.create | bool | `false` | Whether to create notifications secret |
|
| notifications.secret.create | bool | `false` | Whether to create notifications secret |
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{{ if .Values.notifications.configmap.create }}
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ConfigMap
|
kind: ConfigMap
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -20,3 +21,4 @@ data:
|
||||||
subscriptions: |
|
subscriptions: |
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- end }}
|
|
@ -449,6 +449,10 @@ dashboard:
|
||||||
volumeMounts: []
|
volumeMounts: []
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
|
configmap:
|
||||||
|
# -- Whether to create notifications configmap
|
||||||
|
create: true
|
||||||
|
|
||||||
secret:
|
secret:
|
||||||
# -- Whether to create notifications secret
|
# -- Whether to create notifications secret
|
||||||
create: false
|
create: false
|
||||||
|
|
Loading…
Reference in a new issue