8a59fb9804
Change-Id: I037912a47a1ece600497d0930a5a1ce96d730eb6
17 lines
409 B
YAML
17 lines
409 B
YAML
{{- if .Values.manifests.configmap_etc_client }}
|
|
{{- $envAll := . }}
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ printf "%s-%s" $envAll.Release.Name "etc" }}
|
|
data:
|
|
rootwrap.conf: |
|
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.postgresqlrootwrap | indent 4 }}
|
|
|
|
postgresql-rootwrap-filter: |
|
|
{{ include "helm-toolkit.utils.to_ini" .Values.conf.postgresqlfilter | indent 4 }}
|
|
|
|
{{- end }}
|