17 lines
455 B
YAML
17 lines
455 B
YAML
![]() |
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ include "argocd-notifications.name" . }}-cm
|
||
|
labels:
|
||
|
{{- include "argocd-notifications.labels" . | nindent 4 }}
|
||
|
data:
|
||
|
config.yaml: |
|
||
|
context:
|
||
|
argocdUrl: {{ .Values.argocdUrl | quote }}
|
||
|
subscriptions:
|
||
|
{{- toYaml .Values.subscriptions | nindent 6 }}
|
||
|
templates:
|
||
|
{{- toYaml .Values.templates | nindent 6 }}
|
||
|
triggers:
|
||
|
{{- toYaml .Values.triggers | nindent 6 }}
|