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