Signed-off-by: carlos gonzález <cgrs@users.noreply.github.com>
This commit is contained in:
parent
98da71eb87
commit
c358b5e71f
4 changed files with 10 additions and 3 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.7.9
|
||||||
kubeVersion: ">=1.23.0-0"
|
kubeVersion: ">=1.23.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.41.2
|
version: 5.42.0
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -26,5 +26,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
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: changed
|
- kind: added
|
||||||
description: Update to app version v2.7.9
|
description: Extra secret labels with .Values.notifications.secret.labels
|
||||||
|
|
|
@ -1195,6 +1195,7 @@ If you want to use an existing Redis (eg. a managed service from a cloud provide
|
||||||
| notifications.secret.annotations | object | `{}` | key:value pairs of annotations to be added to the secret |
|
| notifications.secret.annotations | object | `{}` | key:value pairs of annotations to be added to the secret |
|
||||||
| notifications.secret.create | bool | `true` | Whether helm chart creates notifications controller secret |
|
| notifications.secret.create | bool | `true` | Whether helm chart creates notifications controller secret |
|
||||||
| notifications.secret.items | object | `{}` | Generic key:value pairs to be inserted into the secret |
|
| notifications.secret.items | object | `{}` | Generic key:value pairs to be inserted into the secret |
|
||||||
|
| notifications.secret.labels | object | `{}` | key:value pairs of labels to be added to the secret |
|
||||||
| notifications.serviceAccount.annotations | object | `{}` | Annotations applied to created service account |
|
| notifications.serviceAccount.annotations | object | `{}` | Annotations applied to created service account |
|
||||||
| notifications.serviceAccount.automountServiceAccountToken | bool | `true` | Automount API credentials for the Service Account |
|
| notifications.serviceAccount.automountServiceAccountToken | bool | `true` | Automount API credentials for the Service Account |
|
||||||
| notifications.serviceAccount.create | bool | `true` | Create notifications controller service account |
|
| notifications.serviceAccount.create | bool | `true` | Create notifications controller service account |
|
||||||
|
|
|
@ -6,6 +6,9 @@ metadata:
|
||||||
namespace: {{ .Release.Namespace | quote }}
|
namespace: {{ .Release.Namespace | quote }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "argo-cd.labels" (dict "context" . "component" .Values.notifications.name "name" .Values.notifications.name) | nindent 4 }}
|
{{- include "argo-cd.labels" (dict "context" . "component" .Values.notifications.name "name" .Values.notifications.name) | nindent 4 }}
|
||||||
|
{{- with .Values.notifications.secret.labels }}
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
{{- with .Values.notifications.secret.annotations }}
|
{{- with .Values.notifications.secret.annotations }}
|
||||||
annotations:
|
annotations:
|
||||||
{{- range $key, $value := . }}
|
{{- range $key, $value := . }}
|
||||||
|
|
|
@ -2795,6 +2795,9 @@ notifications:
|
||||||
# -- key:value pairs of annotations to be added to the secret
|
# -- key:value pairs of annotations to be added to the secret
|
||||||
annotations: {}
|
annotations: {}
|
||||||
|
|
||||||
|
# -- key:value pairs of labels to be added to the secret
|
||||||
|
labels: {}
|
||||||
|
|
||||||
# -- Generic key:value pairs to be inserted into the secret
|
# -- Generic key:value pairs to be inserted into the secret
|
||||||
## Can be used for templates, notification services etc. Some examples given below.
|
## Can be used for templates, notification services etc. Some examples given below.
|
||||||
## For more information: https://argocd-notifications.readthedocs.io/en/stable/services/overview/
|
## For more information: https://argocd-notifications.readthedocs.io/en/stable/services/overview/
|
||||||
|
|
Loading…
Reference in a new issue