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

13 lines
381 B
YAML

{{- if .Values.gateway.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "tempo.resourceName" (dict "ctx" . "component" "gateway") }}
namespace: {{ .Release.Namespace }}
labels:
{{- include "tempo.labels" (dict "ctx" . "component" "gateway") | nindent 4 }}
data:
nginx.conf: |
{{- tpl .Values.gateway.nginxConfig.file . | nindent 4 }}
{{- end }}