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
Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/getting-started/intro-to-codefresh/) to Kubernetes.
6
6
@@ -389,6 +389,18 @@ postgresql:
389
389
enabled: false
390
390
```
391
391
392
+
Provide the following env vars to enable SSL connection to Postgres:
393
+
394
+
```yaml
395
+
global:
396
+
env:
397
+
PGSSLMODE: "require"
398
+
399
+
helm-repo-manager:
400
+
env:
401
+
POSTGRES_DISABLE_SSL: "false"
402
+
```
403
+
392
404
#### External Redis
393
405
394
406
```yaml
@@ -2589,6 +2601,8 @@ After platform upgrade, Consul fails with the error `refusing to rejoin cluster
2589
2601
| seed-e2e | object | `{"affinity":{},"backoffLimit":10,"enabled":false,"image":{"registry":"docker.io","repository":"mongo","tag":"latest"},"nodeSelector":{},"podSecurityContext":{},"resources":{},"tolerations":[],"ttlSecondsAfterFinished":300}` | CI |
2590
2602
| seed.enabled | bool | `true` | Enable all seed jobs |
2591
2603
| seed.mongoSeedJob | object | See below | Mongo Seed Job. Required at first install. Seeds the required data (default idp/user/account), creates cfuser and required databases. |
2604
+
| seed.mongoSeedJob.env | object | `{}` | Extra env variables for seed job. |
2605
+
| seed.mongoSeedJob.mongodbRootOptions | string | `""` | Extra options for connection string (e.g. `authSource=admin`). |
2592
2606
| seed.mongoSeedJob.mongodbRootPassword | string | `"XT9nmM8dZD"` | Root password in plain text (required ONLY for seed job!). |
0 commit comments