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
The Cluster resource defines the .spec.postgresql.extensions list of
objects to import an extension as an image volume.
https://cloudnative-pg.io/docs/1.29/imagevolume_extensions
However the chart doesn't recognise this setting and throws an error if set.
Add support for the setting, which can be used for example as:
```yaml
cluster:
postgresql:
extensions:
- name: pg-oidc-validator
image:
reference: registry.codicelieve.com/pg-oidc-validator:v0.2-pg18-trixie
pullPolicy: IfNotPresent
```
Signed-off-by: Daniele Varrazzo <daniele.varrazzo@gmail.com>
Copy file name to clipboardExpand all lines: charts/cluster/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,6 +179,7 @@ refer to the [CloudNativePG Documentation](https://cloudnative-pg.io/documentati
179
179
| cluster.podSecurityContext | object | `{}` | Configure the Pod Security Context. See: https://cloudnative-pg.io/documentation/preview/security/ |
180
180
| cluster.postgresGID | int | `-1` | The GID of the postgres user inside the image, defaults to 26 |
181
181
| cluster.postgresUID | int | `-1` | The UID of the postgres user inside the image, defaults to 26 |
182
+
| cluster.postgresql.extensions | list | `[]` | List of [image volume extensions](https://cloudnative-pg.io/docs/1.29/imagevolume_extensions/) to load in the cluster pod |
0 commit comments