Skip to content

Commit 03ab8f4

Browse files
onprem: 2.6.9 (#29)
1 parent 778e715 commit 03ab8f4

File tree

4 files changed

+35
-18
lines changed

4 files changed

+35
-18
lines changed

codefresh/Chart.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,12 @@ dependencies:
148148
version: 0.49.76
149149
- name: argo-platform
150150
repository: oci://quay.io/codefresh/charts
151-
version: 1.3169.1-onprem-d65a019
151+
version: 1.3169.1-onprem-915b48a
152152
- name: argo-hub-platform
153153
repository: oci://quay.io/codefresh/charts
154154
version: 0.1.18
155155
- name: cf-oidc-provider
156156
repository: oci://quay.io/codefresh/charts
157157
version: 0.0.15
158-
digest: sha256:cae4ba166e0a91d195af3df797c43294a9d2b1de2771524a4fb2d04946babd59
159-
generated: "2025-03-04T10:59:18.787343+03:00"
158+
digest: sha256:416dcda251f5cd35df121c7beb2a922e581177f0fcdbe54e486bd3130a1eb835
159+
generated: "2025-03-07T17:14:47.941403+03:00"

codefresh/Chart.yaml

+4-14
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.6.8
4+
version: 2.6.9
55
keywords:
66
- codefresh
77
home: https://codefresh.io/
@@ -15,21 +15,11 @@ appVersion: 2.6.0
1515
annotations:
1616
# artifacthub.io/prerelease: "true"
1717
artifacthub.io/alternativeName: "codefresh-onprem"
18-
artifacthub.io/containsSecurityUpdates: "true"
18+
# artifacthub.io/containsSecurityUpdates: "true"
1919
# supported kinds are added, changed, deprecated, removed, fixed and security.
2020
artifacthub.io/changes: |
21-
- kind: security
22-
description: "Miscellaneous security updates (27.02.2025)"
2321
- kind: fixed
24-
description: "Fixed removing a user with assigned SSO configuration that does not exist on the platform"
25-
links:
26-
- name: JIRA Issue
27-
url: https://codefresh-io.atlassian.net/browse/CR-27590
28-
- kind: fixed
29-
description: "Fixed unassigning removed SSO configuration for a user"
30-
links:
31-
- name: JIRA Issue
32-
url: https://codefresh-io.atlassian.net/browse/CR-27590
22+
description: "Optional CACHE_PASSWORD env var for argo-platform (api-graphql/promotion-orchestrator)"
3323
dependencies:
3424
- name: cf-common
3525
repository: oci://quay.io/codefresh/charts
@@ -247,7 +237,7 @@ dependencies:
247237
repository: oci://quay.io/codefresh/charts
248238
condition: argo-platform.enabled
249239
- name: argo-platform
250-
version: "1.3169.1-onprem-d65a019"
240+
version: "1.3169.1-onprem-915b48a"
251241
repository: oci://quay.io/codefresh/charts
252242
condition: argo-platform.enabled
253243
- name: argo-hub-platform

codefresh/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Codefresh On-Premises
22

3-
![Version: 2.6.8](https://img.shields.io/badge/Version-2.6.8-informational?style=flat-square) ![AppVersion: 2.6.0](https://img.shields.io/badge/AppVersion-2.6.0-informational?style=flat-square)
3+
![Version: 2.6.9](https://img.shields.io/badge/Version-2.6.9-informational?style=flat-square) ![AppVersion: 2.6.0](https://img.shields.io/badge/AppVersion-2.6.0-informational?style=flat-square)
44

55
Helm chart for deploying [Codefresh On-Premises](https://codefresh.io/docs/docs/getting-started/intro-to-codefresh/) to Kubernetes.
66

codefresh/tests/misc/misc_test.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/helm-unittest/helm-unittest/master/schema/helm-testsuite.json
2+
suite: Misc tests
3+
templates:
4+
- charts/argo-platform/templates/**/*.yaml
5+
tests:
6+
- it: argo-platform api-graphql should have empty CACHE_PASSWORD when no .Values.global.redisPassword or .Values.global.redisPasswordSecretKeyRef is provided
7+
template: charts/argo-platform/templates/api-graphql/workload.yaml
8+
set:
9+
global.redisPassword: ""
10+
asserts:
11+
- notContains:
12+
path: spec.template.spec.containers[0].env
13+
content:
14+
name: CACHE_PASSWORD
15+
any: true
16+
17+
- it: argo-platform promotion-orchestrator should have empty CACHE_PASSWORD when no .Values.global.redisPassword or .Values.global.redisPasswordSecretKeyRef is provided
18+
template: charts/argo-platform/templates/promotion-orchestrator/workload.yaml
19+
set:
20+
global.redisPassword: ""
21+
asserts:
22+
- notContains:
23+
path: spec.template.spec.containers[0].env
24+
content:
25+
name: CACHE_PASSWORD
26+
any: true
27+

0 commit comments

Comments
 (0)