20 lines
422 B
YAML
20 lines
422 B
YAML
{{- if .Values.namespaces }}
|
|
{{- range $ns := .Values.namespaces }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: {{ $ns.name }}
|
|
labels:
|
|
{{- include "namespaces.labels" $ | nindent 4 }}
|
|
{{- with $ns.labels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
annotations:
|
|
"helm.sh/resource-policy": keep
|
|
{{- with $ns.annotations}}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|