charts/kubernetes-stateful-chart/templates/configuration/manifest.yaml (21 lines of code) (raw):

{{/* This template defines the default application configuration. It relies on the HOCON notation. Ref: https://github.com/lightbend/config/blob/main/HOCON.md#hocon-human-optimized-config-object-notation. */}} {{- if .Values.include }} {{- if and .Values.defaultConfig.name .Values.defaultConfig.mountPath }} apiVersion: v1 kind: ConfigMap metadata: name: {{ include "lib.appName" . }}-conf namespace: {{ include "lib.namespace" . }} labels: app.kubernetes.io/component: {{ include "lib.componentName" . }} {{- include "lib.labels" . | nindent 4 }} annotations: {{- include "lib.annotations" . | nindent 4 }} data: {{ .Values.defaultConfig.name }}: |- {{- tpl (default .Values.defaultConfig.config .Values.config) $ | nindent 4 }} {{- end }} {{- end }}