We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2222fd commit eb2c8aeCopy full SHA for eb2c8ae
hosting/k8s/helm/templates/postgresql.yaml
@@ -50,6 +50,9 @@ spec:
50
args:
51
- "-c"
52
- "wal_level=logical"
53
+ {{- with .Values.postgresql.extraArgs }}
54
+ {{- toYaml . | nindent 12 }}
55
+ {{- end }}
56
livenessProbe:
57
exec:
58
command:
hosting/k8s/helm/values.yaml
@@ -196,6 +196,13 @@ postgresql:
196
[]
197
# - name: CUSTOM_VAR
198
# value: "custom-value"
199
+ # Extra command line arguments for PostgreSQL
200
+ extraArgs:
201
+ []
202
+ # - "-c"
203
+ # - "log_statement=all"
204
205
+ # - "max_slot_wal_keep_size=1000000000"
206
207
# Redis configuration
208
redis:
0 commit comments