1234567891011121314151617181920212223242526272829 |
- {{- if .Values.common.configmap }}
- apiVersion: v1
- kind: ConfigMap
- metadata:
- name: {{ include "dolphinscheduler.fullname" . }}-common
- labels:
- app.kubernetes.io/name: {{ include "dolphinscheduler.fullname" . }}-common
- {{- include "dolphinscheduler.common.labels" . | nindent 4 }}
- data:
- {{- range $key, $value := .Values.common.configmap }}
- {{ $key }}: {{ $value | quote }}
- {{- end }}
- {{- end }}
|