12 lines
271 B
YAML
12 lines
271 B
YAML
{{- if .Values.config.create -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "clawdbot.configMapName" . }}
|
|
labels:
|
|
{{- include "clawdbot.labels" . | nindent 4 }}
|
|
data:
|
|
clawdbot.json: |
|
|
{{ .Values.config.data | toJson | nindent 4 }}
|
|
{{- end }}
|