feat(argo-rollouts): add annotations for notifications secret
This commit is contained in:
parent
3c127abe7b
commit
1ef6c84009
2 changed files with 8 additions and 0 deletions
|
@ -4,6 +4,12 @@ kind: Secret
|
|||
metadata:
|
||||
name: argo-rollouts-notification-secret
|
||||
namespace: {{ .Release.Namespace | quote }}
|
||||
{{- with .Values.notifications.secret.annotations }}
|
||||
annotations:
|
||||
{{- range $key, $value := . }}
|
||||
{{ $key }}: {{ $value | quote }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
labels:
|
||||
app.kubernetes.io/component: {{ .Values.controller.component }}
|
||||
{{- include "argo-rollouts.labels" . | nindent 4 }}
|
||||
|
|
|
@ -454,6 +454,8 @@ notifications:
|
|||
# -- Generic key:value pairs to be inserted into the notifications secret
|
||||
items: {}
|
||||
# slack-token:
|
||||
# -- Annotations to be added to the notifications secret
|
||||
annotations: {}
|
||||
|
||||
# -- Configures notification services
|
||||
notifiers: {}
|
||||
|
|
Loading…
Reference in a new issue