mirror of
https://github.com/Thumbscrew/k8s-charts.git
synced 2024-11-10 16:13:50 +00:00
13 lines
276 B
YAML
13 lines
276 B
YAML
|
{{- if .Values.config -}}
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ include "focalboard.fullname" . }}
|
||
|
data:
|
||
|
{{- with .Values.config }}
|
||
|
serverRoot: {{ .serverRoot }}
|
||
|
port: "{{ .port }}"
|
||
|
config: |
|
||
|
{{- toPrettyJson . | nindent 4 -}}
|
||
|
{{- end }}
|
||
|
{{- end }}
|