Skip to content

Commit

Permalink
Fix ArgoCD diff on postgresql keys
Browse files Browse the repository at this point in the history
Signed-off-by: Mohammad Bozorgmehr <[email protected]>
  • Loading branch information
bozorgmehr96 committed Nov 5, 2024
1 parent 238f826 commit 6fb2639
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions charts/cluster/templates/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,18 @@ spec:
{{- with .Values.cluster.postgresql.shared_preload_libraries }}
{{- toYaml . | nindent 6 }}
{{- end }}
{{- with .Values.cluster.postgresql }}
{{- with .Values.cluster.postgresql.pg_hba }}
pg_hba:
{{- toYaml .pg_hba | nindent 6 }}
{{- toYaml . | nindent 6 }}
{{- end }}
{{- with .Values.cluster.postgresql.pg_ident }}
pg_ident:
{{- toYaml .pg_ident | nindent 6 }}
{{- toYaml . | nindent 6 }}
{{- end }}
{{- with .Values.cluster.postgresql.parameters }}
parameters:
{{- toYaml .parameters | nindent 6 }}
{{ end }}
{{- toYaml . | nindent 6 }}
{{- end }}

managed:
{{- with .Values.cluster.roles }}
Expand Down

0 comments on commit 6fb2639

Please sign in to comment.