porthole/charts/postgresql-utility/templates/configmap-etc-client.yaml
dt241s@att.com 8a59fb9804 Enable Deployment configuration consistency across all UC
Change-Id: I037912a47a1ece600497d0930a5a1ce96d730eb6
2020-05-13 13:07:54 -05:00

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 }}