infra/helm/platform/templates/namespace.yaml
Metadata
- Purpose: Kubernetes Helm chart template or values configuration.
- Domain:
infrastructure - Language:
yaml - Bytes: 389
- Lines: 13
- Content hash (short):
d589274f - Source (start): infra/helm/platform/templates/namespace.yaml:1
- Source (end): infra/helm/platform/templates/namespace.yaml:13
Indexed Symbols
No indexed functions/methods detected in this file.
Markdown Headings (if applicable)
No markdown headings detected.
Source Preview
{{- if .Values.namespace.create }}
apiVersion: v1
kind: Namespace
metadata:
name: {{ .Values.namespace.name }}
labels:
app.kubernetes.io/managed-by: helm
anchor.io/environment: {{ .Values.global.environment | quote }}
pod-security.kubernetes.io/enforce: restricted
pod-security.kubernetes.io/audit: restricted
pod-security.kubernetes.io/warn: restricted
{{- end }}