|
@@ -108,6 +108,8 @@ The following table lists the configurable parameters of the Wiki.js chart and t
|
|
|
| `postgresql.postgresqlHost` | External postgres host | `nil` |
|
|
|
| `postgresql.postgresqlPassword` | External postgres password | `nil` |
|
|
|
| `postgresql.postgresqlPort` | External postgres port | `5432` |
|
|
|
+| `postgresql.ssl` | Enable external postgres SSL connection | `false` |
|
|
|
+| `postgresql.ca` | Certificate of Authority path for postgres | `nil` |
|
|
|
| `postgresql.persistence.enabled` | Enable postgres persistence using PVC | `true` |
|
|
|
| `postgresql.persistence.existingClaim` | Provide an existing `PersistentVolumeClaim` for postgres | `nil` |
|
|
|
| `postgresql.persistence.storageClass` | Postgres PVC Storage Class (example: `nfs`) | `nil` |
|
|
@@ -137,6 +139,8 @@ By default, PostgreSQL is installed as part of the chart.
|
|
|
|
|
|
To use an external PostgreSQL server, set `postgresql.enabled` to `false` and then set `postgresql.postgresqlHost` and `postgresql.postgresqlPassword`. The other options (`postgresql.postgresqlDatabase`, `postgresql.postgresqlUser` and `postgresql.postgresqlPort`) may also want changing from their default values.
|
|
|
|
|
|
+To use an SSL connection you can set `postgresql.ssl` to `true` and if needed the path to a Certificate of Authority can be set using `postgresql.ca` to `/path/to/ca`. Default `postgresql.ssl` value is `false`.
|
|
|
+
|
|
|
You also need to add the follow Helm template to your deployment:
|
|
|
|
|
|
```yaml
|