Fix spacing issues in YAML files in vnfs
[demo.git] / vnfs / DAaaS / deploy / operator / charts / prometheus-operator / templates / prometheus / additionalAlertmanagerConfigs.yaml
1 {{- if and .Values.prometheus.enabled .Values.prometheus.prometheusSpec.additionalAlertManagerConfigs }}
2 apiVersion: v1
3 kind: Secret
4 metadata:
5   name: {{ template "prometheus-operator.fullname" . }}-prometheus-am-confg
6   labels:
7     app: {{ template "prometheus-operator.name" . }}-prometheus-am-confg
8 {{ include "prometheus-operator.labels" . | indent 4 }}
9 data:
10   additional-alertmanager-configs.yaml: {{ toYaml .Values.prometheus.prometheusSpec.additionalAlertManagerConfigs | b64enc | quote }}
11 {{- end }}