aboutsummaryrefslogtreecommitdiffstats
path: root/vnfs/DAaaS/deploy/operator/charts/prometheus-operator/templates/prometheus/additionalAlertmanagerConfigs.yaml
blob: 4475e7bd476a3d84f844851b8bc34d4e458b4509 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{- if and .Values.prometheus.enabled .Values.prometheus.prometheusSpec.additionalAlertManagerConfigs }}
apiVersion: v1
kind: Secret
metadata:
  name: {{ template "prometheus-operator.fullname" . }}-prometheus-am-confg
  labels:
    app: {{ template "prometheus-operator.name" . }}-prometheus-am-confg
{{ include "prometheus-operator.labels" . | indent 4 }}
data:
  additional-alertmanager-configs.yaml: {{ toYaml .Values.prometheus.prometheusSpec.additionalAlertManagerConfigs | b64enc | quote }}
{{- end }}