blob: 1c54f40b07bf407056907cb61b52ca69e1a28ca8 (
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 }}
|