File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ annotations:
20
20
artifacthub.io/changes : |
21
21
- kind: fixed
22
22
description: "(cf-api): Fix internal feature-flags"
23
+ - kind: fixed
24
+ description: "Fix mongo-seed job with Mongo MTLS enabled"
23
25
dependencies :
24
26
- name : cf-common
25
27
repository : oci://quay.io/codefresh/charts
Original file line number Diff line number Diff line change 1
1
## Codefresh On-Premises
2
2
3
- ![ Version: 2.8.0-rc.2 ] ( https://img.shields.io/badge/Version-2.8.0--rc.2 -informational?style=flat-square ) ![ AppVersion: 2.7.0] ( https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square )
3
+ ![ Version: 2.8.0-rc.3 ] ( https://img.shields.io/badge/Version-2.8.0--rc.3 -informational?style=flat-square ) ![ AppVersion: 2.7.0] ( https://img.shields.io/badge/AppVersion-2.7.0-informational?style=flat-square )
4
4
5
5
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
Original file line number Diff line number Diff line change 49
49
{{- include "codefresh.postgres-seed-user-env-var-value" . | indent 12 }}
50
50
- name : POSTGRES_SEED_PASSWORD
51
51
{{- include "codefresh.postgres-seed-password-env-var-value" . | indent 12 }}
52
+ {{- range $env, $val := .Values.global.env }}
53
+ - name : {{ $env }}
54
+ value : {{ $val | quote }}
55
+ {{ end }}
52
56
resources :
53
57
{{- toYaml .Values.seed.resources | nindent 10 }}
54
58
command :
You can’t perform that action at this time.
0 commit comments