mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 21:41:17 +00:00
14 lines
270 B
YAML
14 lines
270 B
YAML
{{- range $ns := .Values.namespaces }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
annotations:
|
|
"helm.sh/resource-policy": keep
|
|
{{- if $ns.privileged }}
|
|
labels:
|
|
pod-security.kubernetes.io/enforce: privileged
|
|
{{- end }}
|
|
name: {{ $ns.name }}
|
|
{{- end }}
|