14 lines
343 B
YAML
14 lines
343 B
YAML
|
{{- if .Values.enabled }}
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: {{ template "lbrycrd.fullname" . }}
|
||
|
labels:
|
||
|
app: {{ template "lbrycrd.name" . }}
|
||
|
chart: {{ template "lbrycrd.chart" . }}
|
||
|
release: {{ .Release.Name }}
|
||
|
heritage: {{ .Release.Service }}
|
||
|
data:
|
||
|
{{ toYaml .Values.configurationFile | indent 2 }}
|
||
|
{{- end }}
|