12 lines
258 B
YAML
12 lines
258 B
YAML
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ template "common.names.fullname" . }}-settings
|
||
|
labels:
|
||
|
{{- include "common.labels" . | nindent 4 }}
|
||
|
data:
|
||
|
configuration.yaml: |
|
||
|
{{- with .Values.config }}
|
||
|
{{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|