infra/helm/platform/templates/web-configmap.yaml
Metadata
- Purpose: Kubernetes Helm chart template or values configuration.
- Domain:
infrastructure - Language:
yaml - Bytes: 247
- Lines: 12
- Content hash (short):
0bbf8cc3 - Source (start): infra/helm/platform/templates/web-configmap.yaml:1
- Source (end): infra/helm/platform/templates/web-configmap.yaml:12
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
{{- if .Values.web.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: anchor-web-config
namespace: {{ .Values.namespace.name }}
data:
{{- range $key, $value := .Values.web.env }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}