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