This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
k8s-cluster-config/charts/namespaces/chart/templates/namespaces.yaml

20 lines
422 B
YAML
Raw Permalink Normal View History

2024-02-08 18:58:31 +00:00
{{- 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:
2024-02-16 14:47:14 +00:00
"helm.sh/resource-policy": keep
{{- with $ns.annotations}}
2024-02-08 18:58:31 +00:00
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}
{{- end }}