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
|`global.imageRegistry`| Global Docker image registry |`""`|
72
-
|`global.imagePullSecrets`| Global Docker registry secret names as an array |`[]`|
73
-
|`global.storageClass`| Global StorageClass for Persistent Volume(s) |`""`|
74
-
|`global.postgresql.auth.postgresPassword`| Password for the "postgres" admin user (overrides `auth.postgresPassword`) |`""`|
75
-
|`global.postgresql.auth.username`| Name for a custom user to create (overrides `auth.username`) |`""`|
76
-
|`global.postgresql.auth.password`| Password for the custom user to create (overrides `auth.password`) |`""`|
77
-
|`global.postgresql.auth.database`| Name for a custom database to create (overrides `auth.database`) |`""`|
78
-
|`global.postgresql.auth.existingSecret`| Name of existing secret to use for PostgreSQL credentials (overrides `auth.existingSecret`). |`""`|
79
-
|`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. |`""`|
80
-
|`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. |`""`|
81
-
|`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. |`""`|
82
-
|`global.postgresql.service.ports.postgresql`| PostgreSQL service port (overrides `service.ports.postgresql`) |`""`|
|`global.imageRegistry`| Global Docker image registry |`""`|
72
+
|`global.imagePullSecrets`| Global Docker registry secret names as an array |`[]`|
73
+
|`global.storageClass`| Global StorageClass for Persistent Volume(s) |`""`|
74
+
|`global.postgresql.auth.postgresPassword`| Password for the "postgres" admin user (overrides `auth.postgresPassword`) |`""`|
75
+
|`global.postgresql.auth.username`| Name for a custom user to create (overrides `auth.username`) |`""`|
76
+
|`global.postgresql.auth.password`| Password for the custom user to create (overrides `auth.password`) |`""`|
77
+
|`global.postgresql.auth.database`| Name for a custom database to create (overrides `auth.database`) |`""`|
78
+
|`global.postgresql.auth.existingSecret`| Name of existing secret to use for PostgreSQL credentials (overrides `auth.existingSecret`). |`""`|
79
+
|`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. |`""`|
80
+
|`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. |`""`|
81
+
|`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. |`""`|
82
+
|`global.postgresql.service.ports.postgresql`| PostgreSQL service port (overrides `service.ports.postgresql`) |`""`|
83
+
|`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) |`disabled`|
Copy file name to clipboardexpand all lines: bitnami/postgresql/values.yaml
+9
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,15 @@ global:
42
42
service:
43
43
ports:
44
44
postgresql: ""
45
+
## Compatibility adaptations for Kubernetes platforms
46
+
##
47
+
compatibility:
48
+
## Compatibility adaptations for Openshift
49
+
##
50
+
openshift:
51
+
## @param 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)
0 commit comments