github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/deploy/official-postgresql/templates/configmap-14.yaml (about) 1 apiVersion: v1 2 kind: ConfigMap 3 metadata: 4 name: official-postgresql14-configuration 5 labels: 6 {{- include "official-postgresql.labels" . | nindent 4 }} 7 data: 8 postgresql.conf: |- 9 {{- .Files.Get "config/pg14-config.tpl" | nindent 4 }} 10 pg_hba.conf: | 11 host all all 0.0.0.0/0 md5 12 host all all ::/0 md5 13 local all all trust 14 host all all 127.0.0.1/32 trust 15 host all all ::1/128 trust 16 local replication all trust 17 host replication all 0.0.0.0/0 md5 18 host replication all ::/0 md5