* Fix of Argo Rollouts notifications subscription Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> * Fixed Argo Rollouts helm changelog Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> * Fixed Argo Rollouts helm default values.yaml Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> * Fixed Argo Rollouts doc after helm update Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> --------- Signed-off-by: Yurii Bychenok <bychenok.y@ajax.systems> Signed-off-by: Aikawa <yu.croco@gmail.com> Co-authored-by: Aikawa <yu.croco@gmail.com>
22 lines
658 B
YAML
22 lines
658 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: argo-rollouts-notification-configmap
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels:
|
|
app.kubernetes.io/component: {{ .Values.controller.component }}
|
|
{{- include "argo-rollouts.labels" . | nindent 4 }}
|
|
data:
|
|
{{- with .Values.notifications.notifiers }}
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
{{- with .Values.notifications.templates }}
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
{{- with .Values.notifications.triggers }}
|
|
{{- toYaml . | nindent 2 }}
|
|
{{- end }}
|
|
{{- with .Values.notifications.subscriptions }}
|
|
subscriptions: |
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|