mirror of
https://github.com/bitnami/charts.git
synced 2026-03-12 06:47:32 +08:00
12 lines
401 B
YAML
12 lines
401 B
YAML
{{- if (include "thanos.querier.createSDConfigmap" .) }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "thanos.fullname" . }}-querier-sd-configmap
|
|
labels: {{- include "thanos.labels" . | nindent 4 }}
|
|
app.kubernetes.io/component: querier
|
|
data:
|
|
servicediscovery.yml: |-
|
|
{{- include "thanos.tplValue" (dict "value" .Values.querier.sdConfig "context" $) | nindent 4 }}
|
|
{{ end }}
|