PromucFlow_constructor/deploy/helm/templates/namespace.yaml
gokuatkai 0edd50f6b2
Add helm param to disable namespace creation (#9719)
Will only create namespace if namespace.create == true
2021-12-15 08:01:48 +05:30

7 lines
132 B
YAML

{{- if .Values.namespace.create }}
apiVersion: v1
kind: Namespace
metadata:
name: {{ include "appsmith.namespace" . }}
{{- end }}