21 lines
577 B
YAML
21 lines
577 B
YAML
{{- include "common.setup" . }}
|
|
|
|
{{/* Append the hardcoded settings */}}
|
|
{{- define "pydiocells.harcodedValues" -}}
|
|
persistence:
|
|
pydiocells-install:
|
|
enabled: "true"
|
|
mountPath: "/cells/install.yml"
|
|
subPath: "pydiocells-install"
|
|
type: "custom"
|
|
volumeSpec:
|
|
configMap:
|
|
name: {{ printf "%v-install" (include "common.names.fullname" .) }}
|
|
{{- end -}}
|
|
{{- $_ := mergeOverwrite .Values (include "pydiocells.harcodedValues" . | fromYaml) -}}
|
|
|
|
{{- include "pydiocells.configmap" . }}
|
|
|
|
{{/* Render the templates */}}
|
|
{{ include "common.postSetup" . }}
|