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
Copy file name to clipboardExpand all lines: bitnami/postgresql/README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -373,6 +373,7 @@ If you already have data in it, you will fail to sync to standby nodes for all c
373
373
| `global.postgresql.auth.secretKeys.adminPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.adminPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set. | `""` |
374
374
| `global.postgresql.auth.secretKeys.userPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.userPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set. | `""` |
375
375
| `global.postgresql.auth.secretKeys.replicationPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.replicationPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set. | `""` |
376
+
| `global.postgresql.auth.secretKeys.metricsPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.metricsPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set. | `""` |
376
377
| `global.postgresql.service.ports.postgresql` | PostgreSQL service port (overrides `service.ports.postgresql`) | `""` |
377
378
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |
378
379
@@ -410,10 +411,13 @@ If you already have data in it, you will fail to sync to standby nodes for all c
410
411
| `auth.database` | Name for a custom database to create | `""` |
411
412
| `auth.replicationUsername` | Name of the replication user | `repl_user` |
412
413
| `auth.replicationPassword` | Password for the replication user. Ignored if `auth.existingSecret` is provided | `""` |
414
+
| `auth.metricsUsername` | Name of the metrics user used by postgresql exporter | `""` |
415
+
| `auth.metricsPassword` | Password for the metrics user used by postgresql exporter. Ignored if `auth.existingSecret` is provided | `""` |
413
416
| `auth.existingSecret` | Name of existing secret to use for PostgreSQL credentials. `auth.postgresPassword`, `auth.password`, and `auth.replicationPassword` will be ignored and picked up from this secret. The secret might also contains the key `ldap-password` if LDAP is enabled. `ldap.bind_password` will be ignored and picked from this secret in this case. | `""` |
414
417
| `auth.secretKeys.adminPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set. | `postgres-password` |
415
418
| `auth.secretKeys.userPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set. | `password` |
416
419
| `auth.secretKeys.replicationPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set. | `replication-password` |
420
+
| `auth.secretKeys.metricsPasswordKey` | Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set. | `metrics-password` |
417
421
| `auth.usePasswordFiles` | Mount credentials as a files instead of using an environment variable | `true` |
Copy file name to clipboardExpand all lines: bitnami/postgresql/values.yaml
+12-2Lines changed: 12 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ global:
15
15
##
16
16
imagePullSecrets: []
17
17
## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
18
-
## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
18
+
## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
19
19
##
20
20
defaultStorageClass: ""
21
21
storageClass: ""
@@ -34,9 +34,10 @@ global:
34
34
## @param global.postgresql.auth.secretKeys.adminPasswordKey Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.adminPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set.
35
35
## @param global.postgresql.auth.secretKeys.userPasswordKey Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.userPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set.
36
36
## @param global.postgresql.auth.secretKeys.replicationPasswordKey Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.replicationPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set.
37
+
## @param global.postgresql.auth.secretKeys.metricsPasswordKey Name of key in existing secret to use for PostgreSQL credentials (overrides `auth.secretKeys.metricsPasswordKey`). Only used when `global.postgresql.auth.existingSecret` is set.
37
38
##
38
39
fullnameOverride: ""
39
-
40
+
40
41
auth:
41
42
postgresPassword: ""
42
43
username: ""
@@ -47,6 +48,7 @@ global:
47
48
adminPasswordKey: ""
48
49
userPasswordKey: ""
49
50
replicationPasswordKey: ""
51
+
metricsPasswordKey: ""
50
52
## @param global.postgresql.service.ports.postgresql PostgreSQL service port (overrides `service.ports.postgresql`)
51
53
##
52
54
service:
@@ -165,17 +167,25 @@ auth:
165
167
## @param auth.replicationPassword Password for the replication user. Ignored if `auth.existingSecret` is provided
166
168
##
167
169
replicationPassword: ""
170
+
## @param auth.metricsUsername Name of the metrics user used by postgresql exporter
171
+
##
172
+
metricsUsername: ""
173
+
## @param auth.metricsPassword Password for the metrics user used by postgresql exporter. Ignored if `auth.existingSecret` is provided
174
+
##
175
+
metricsPassword: ""
168
176
## @param auth.existingSecret Name of existing secret to use for PostgreSQL credentials. `auth.postgresPassword`, `auth.password`, and `auth.replicationPassword` will be ignored and picked up from this secret. The secret might also contains the key `ldap-password` if LDAP is enabled. `ldap.bind_password` will be ignored and picked from this secret in this case.
169
177
##
170
178
existingSecret: ""
171
179
## @param auth.secretKeys.adminPasswordKey Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set.
172
180
## @param auth.secretKeys.userPasswordKey Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set.
173
181
## @param auth.secretKeys.replicationPasswordKey Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set.
182
+
## @param auth.secretKeys.metricsPasswordKey Name of key in existing secret to use for PostgreSQL credentials. Only used when `auth.existingSecret` is set.
174
183
##
175
184
secretKeys:
176
185
adminPasswordKey: postgres-password
177
186
userPasswordKey: password
178
187
replicationPasswordKey: replication-password
188
+
metricsPasswordKey: metrics-password
179
189
## @param auth.usePasswordFiles Mount credentials as a files instead of using an environment variable
0 commit comments