Files
devops-infra-helm-charts-gcp/helm-templates/tempo-distributed/templates/configmap-runtime.yaml
T
2026-08-26 03:39:42 +05:30

13 lines
345 B
YAML

{{- if not .Values.useExternalConfig }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ tpl .Values.externalRuntimeConfigName . }}
labels:
{{- include "tempo.labels" (dict "ctx" .) | nindent 4 }}
namespace: {{ .Release.Namespace | quote }}
data:
overrides.yaml: |
{{ include "tempo.overridesConfig" . | nindent 4 }}
{{- end }}