PromucFlow_constructor/deploy/helm/templates/configMap.yaml

14 lines
341 B
YAML
Raw Normal View History

apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "appsmith.fullname" . }}
namespace: {{ include "appsmith.namespace" . }}
labels:
{{- include "appsmith.labels" . | nindent 4 }}
data:
{{- range $key, $value := .Values.applicationConfig }}
{{- if $value }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}