mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* [stable/prometheus-operator] namespace override Signed-off-by: yoninl2 <yong.jiang1@hp.com> * bump chart version Signed-off-by: Jeremy <yong.jiang1@hp.com> * revert changes in hack folder Signed-off-by: Jeremy <yong.jiang1@hp.com>
17 lines
794 B
YAML
17 lines
794 B
YAML
{{- if and .Values.prometheus.enabled .Values.prometheus.prometheusSpec.additionalAlertRelabelConfigs }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ template "prometheus-operator.fullname" . }}-prometheus-am-relabel-confg
|
|
namespace: {{ template "prometheus-operator.namespace" . }}
|
|
{{- if .Values.prometheus.prometheusSpec.additionalPrometheusSecretsAnnotations }}
|
|
annotations:
|
|
{{ toYaml .Values.prometheus.prometheusSpec.additionalPrometheusSecretsAnnotations | indent 4 }}
|
|
{{- end }}
|
|
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 }}
|