Skip to content

Commit 9302491

Browse files
onprem: 2.8.0-rc.3
1 parent b5397ef commit 9302491

File tree

4 files changed

+42
-28
lines changed

4 files changed

+42
-28
lines changed

codefresh/Chart.lock

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -64,58 +64,58 @@ dependencies:
6464
version: 1.14.22
6565
- name: cfapi
6666
repository: oci://quay.io/codefresh/charts
67-
version: 21.279.3
67+
version: 21.279.4
6868
- name: cfapi
6969
repository: oci://quay.io/codefresh/charts
70-
version: 21.279.3
70+
version: 21.279.4
7171
- name: cfapi
7272
repository: oci://quay.io/codefresh/charts
73-
version: 21.279.3
73+
version: 21.279.4
7474
- name: cfapi
7575
repository: oci://quay.io/codefresh/charts
76-
version: 21.279.3
76+
version: 21.279.4
7777
- name: cfapi
7878
repository: oci://quay.io/codefresh/charts
79-
version: 21.279.3
79+
version: 21.279.4
8080
- name: cfapi
8181
repository: oci://quay.io/codefresh/charts
82-
version: 21.279.3
82+
version: 21.279.4
8383
- name: cfapi
8484
repository: oci://quay.io/codefresh/charts
85-
version: 21.279.3
85+
version: 21.279.4
8686
- name: cfapi
8787
repository: oci://quay.io/codefresh/charts
88-
version: 21.279.3
88+
version: 21.279.4
8989
- name: cfapi
9090
repository: oci://quay.io/codefresh/charts
91-
version: 21.279.3
91+
version: 21.279.4
9292
- name: cfapi
9393
repository: oci://quay.io/codefresh/charts
94-
version: 21.279.3
94+
version: 21.279.4
9595
- name: cfapi
9696
repository: oci://quay.io/codefresh/charts
97-
version: 21.279.3
97+
version: 21.279.4
9898
- name: cfapi
9999
repository: oci://quay.io/codefresh/charts
100-
version: 21.279.3
100+
version: 21.279.4
101101
- name: cfapi
102102
repository: oci://quay.io/codefresh/charts
103-
version: 21.279.3
103+
version: 21.279.4
104104
- name: cfapi
105105
repository: oci://quay.io/codefresh/charts
106-
version: 21.279.3
106+
version: 21.279.4
107107
- name: cfapi
108108
repository: oci://quay.io/codefresh/charts
109-
version: 21.279.3
109+
version: 21.279.4
110110
- name: cfapi
111111
repository: oci://quay.io/codefresh/charts
112-
version: 21.279.3
112+
version: 21.279.4
113113
- name: cfapi
114114
repository: oci://quay.io/codefresh/charts
115-
version: 21.279.3
115+
version: 21.279.4
116116
- name: cfapi
117117
repository: oci://quay.io/codefresh/charts
118-
version: 21.279.3
118+
version: 21.279.4
119119
- name: cfui
120120
repository: oci://quay.io/codefresh/charts
121121
version: 14.98.27
@@ -167,5 +167,5 @@ dependencies:
167167
- name: salesforce-reporter
168168
repository: oci://quay.io/codefresh/charts
169169
version: 1.30.11
170-
digest: sha256:657e1a67d919daf178a83ddd81736519ea6bdc9a1c0bfb2364dad583586c1c1b
171-
generated: "2025-06-02T16:12:53.480633+03:00"
170+
digest: sha256:5cfbe090f3f9e0ebf2f99d898635689d1eae3812fb3fbced10651809cb176d13
171+
generated: "2025-06-04T16:15:07.062564+03:00"

codefresh/Chart.yaml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
description: Helm Chart for Codefresh On-Prem
33
name: codefresh
4-
version: 2.8.0-rc.2
4+
version: 2.8.0-rc.3
55
keywords:
66
- codefresh
77
home: https://codefresh.io/
@@ -19,11 +19,7 @@ annotations:
1919
# supported kinds are added, changed, deprecated, removed, fixed and security.
2020
artifacthub.io/changes: |
2121
- kind: fixed
22-
description: "Fix dependencies version"
23-
- kind: added
24-
description: "(cf-api): Add ability to assign admin/platform permissions for user for specified group during sync"
25-
- kind: fixed
26-
description: "(platform-analytics/postgresql): Fix pg_partman configuration"
22+
description: "(cf-api): Fix internal feature-flags"
2723
dependencies:
2824
- name: cf-common
2925
repository: oci://quay.io/codefresh/charts

codefresh/README.md.gotmpl

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -391,6 +391,19 @@ postgresql:
391391
enabled: false
392392
```
393393

394+
Provide the following env vars to enable SSL connection to Postgres:
395+
396+
```yaml
397+
global:
398+
env:
399+
PGSSLMODE: "require"
400+
401+
helm-repo-manager:
402+
env:
403+
POSTGRES_DISABLE_SSL: "false"
404+
```
405+
406+
394407
#### External Redis
395408

396409
```yaml

codefresh/files/postgresSeedJobScript.sh

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/bin/bash
22

3-
set -xeuo pipefail
3+
set -euo pipefail
4+
5+
if [[ $DEBUG == "true" ]]; then
6+
set -xeuo pipefail
7+
echo "Running in debug mode"
8+
fi
49

510
POSTGRES_DATABASES=(
611
"codefresh"
@@ -51,4 +56,4 @@ function runSeed() {
5156
done
5257
}
5358

54-
runSeed
59+
runSeed

0 commit comments

Comments
 (0)