You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to look for a way to update the pg_hba.conf to
pg_hba:
- local all all trust
- host all all 127.0.0.1/32 trust
- host all all ::1/128 trust
- local replication standby trust
- hostssl replication standby all md5
- hostnossl all all all trust
- hostssl all +zalandos all pam
- hostssl all all all md5
How can I update the values? There is a reject setting that is causing error in my app code.
apiVersion: "acid.zalan.do/v1"
kind: postgresql
metadata:
name: {{ include "app.name" . }}
namespace: {{ .Values.namespace }}
labels:
{{- include "app.labels" . | nindent 4 }}
spec:
patroni:
dynamicConfiguration:
postgresql:
pg_hba:
- local all all trust
- host all all 127.0.0.1/32 trust
- host all all ::1/128 trust
- local replication standby trust
- hostssl replication standby all md5
- hostnossl all all all trust
- hostssl all +zalandos all pam
- hostssl all all all md5
{{- with .Values.databases }}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I am trying to look for a way to update the pg_hba.conf to
How can I update the values? There is a reject setting that is causing error in my app code.
I am using this chart
I was trying to do something like this but failed
Can someone pls help
Beta Was this translation helpful? Give feedback.
All reactions