github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/thanos/templates/storegateway/configmap.yaml (about)

     1  {{- if (include "thanos.storegateway.createConfigmap" .) }}
     2  apiVersion: v1
     3  kind: ConfigMap
     4  metadata:
     5    name: {{ include "common.names.fullname" . }}-storegateway-configmap
     6    namespace: {{ .Release.Namespace | quote }}
     7    labels: {{- include "common.labels.standard" . | nindent 4 }}
     8      app.kubernetes.io/component: storegateway
     9      {{- if .Values.commonLabels }}
    10      {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
    11      {{- end }}
    12    {{- if .Values.commonAnnotations }}
    13    annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
    14    {{- end }}
    15  data:
    16    config.yml: |-
    17      {{- include "common.tplvalues.render" (dict "value" .Values.storegateway.config "context" $) | nindent 4 }}
    18  {{ end }}