helm-charts/charts/modjo-microservice/templates/namespace.yaml
2023-12-16 11:25:39 +01:00

15 lines
No EOL
407 B
YAML

{{ if .Values.namespace.enabled }}
apiVersion: v1
kind: Namespace
metadata:
annotations:
argocd.argoproj.io/sync-wave: "-10"
{{ if .Values.namespace.annotations }}
{{- toYaml $.Values.namespace.annotations | nindent 4 }}
{{ end }}
{{ if .Values.namespace.labels }}
labels:
{{- toYaml $.Values.namespace.labels | nindent 4 }}
{{ end }}
name: {{ .Release.Namespace }}
{{ end }}