Skip to content

Commit 2a570ad

Browse files
onprem: 2.5.5 (#9)
1 parent 0c4c22f commit 2a570ad

File tree

7 files changed

+28
-12
lines changed

7 files changed

+28
-12
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# -- checking postgresql password with special characters
2+
postgresql:
3+
auth:
4+
postgresPassword: "e%C9ar$Yka4Zb!H"
5+
6+
secrets:
7+
ext-postgres:
8+
enabled: true
9+
stringData:
10+
postgres-hostname: cf-postgresql
11+
postgres-password: e%C9ar$Yka4Zb!H
12+
postgres-user: postgres

codefresh/Chart.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -142,18 +142,18 @@ dependencies:
142142
version: 0.8.7
143143
- name: cf-platform-analytics
144144
repository: oci://quay.io/codefresh/charts
145-
version: 0.49.63
145+
version: 0.49.65
146146
- name: cf-platform-analytics
147147
repository: oci://quay.io/codefresh/charts
148-
version: 0.49.63
148+
version: 0.49.65
149149
- name: argo-platform
150150
repository: oci://quay.io/codefresh/charts
151-
version: 1.3037.0-onprem-680e6c9
151+
version: 1.3037.0-onprem-fb06d0a
152152
- name: argo-hub-platform
153153
repository: oci://quay.io/codefresh/charts
154154
version: 0.1.16
155155
- name: cf-oidc-provider
156156
repository: oci://quay.io/codefresh/charts
157157
version: 0.0.15
158-
digest: sha256:5caa90b76bb269d520322473dd9014d852412bdcfd912af7d99255e2ae8fd9e1
159-
generated: "2024-10-11T09:24:24.192115705+03:00"
158+
digest: sha256:5f3103c713ddac080b88d73dbb094b2bc02406d87fda6f130bb89abdc2690e3d
159+
generated: "2024-10-18T22:52:29.468059483+03:00"

codefresh/Chart.yaml

+4-4
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.5.4
4+
version: 2.5.5
55
keywords:
66
- codefresh
77
home: https://codefresh.io/
@@ -18,8 +18,8 @@ annotations:
1818
# artifacthub.io/containsSecurityUpdates: "true"
1919
# supported kinds are added, changed, deprecated, removed, fixed and security.
2020
artifacthub.io/changes: |
21-
- kind: changed
22-
description: "Enable allow-snippet-annotations by default for ingress-nginx"
21+
- kind: fixed
22+
description: "encode special characters in postgresql password (argo-platform)"
2323
dependencies:
2424
- name: cf-common
2525
repository: oci://quay.io/codefresh/charts
@@ -237,7 +237,7 @@ dependencies:
237237
repository: oci://quay.io/codefresh/charts
238238
condition: argo-platform.enabled
239239
- name: argo-platform
240-
version: "1.3037.0-onprem-680e6c9"
240+
version: "1.3037.0-onprem-fb06d0a"
241241
repository: oci://quay.io/codefresh/charts
242242
condition: argo-platform.enabled
243243
- 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.5.4](https://img.shields.io/badge/Version-2.5.4-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
3+
![Version: 2.5.5](https://img.shields.io/badge/Version-2.5.5-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.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/templates/secrets/secret.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ stringData:
2626
POSTGRES_USER: {{ coalesce .Values.global.postgresUser }}
2727
POSTGRES_PASSWORD: {{ coalesce .Values.global.postgresPassword }}
2828
POSTGRES_SEED_USER: {{ (coalesce .Values.seed.postgresSeedJob.postgresUser .Values.global.postgresSeedJob.postgresUser) | default .Values.global.postgresUser }}
29-
POSTGRES_SEED_PASSWORD: {{ (coalesce .Values.seed.postgresSeedJob.postgresPassword .Values.global.postgresSeedJob.postgresPassword) | default .Values.global.postgresPassword }}
29+
POSTGRES_SEED_PASSWORD: {{ urlquery ((coalesce .Values.seed.postgresSeedJob.postgresPassword .Values.global.postgresSeedJob.postgresPassword) | default .Values.global.postgresPassword) }}
3030
POSTGRES_HOSTNAME: {{ default (printf "%s-%s" .Release.Name .Values.global.postgresService) .Values.global.postgresHostname }}
3131
POSTGRES_PORT: {{ coalesce .Values.global.postgresPort | default 5432 | quote }}
32-
POSTGRES_DATABASE: {{ .Values.global.postgresDatabase | default "codefresh" }}
32+
POSTGRES_DATABASE: {{ .Values.global.postgresDatabase | default "codefresh" }}

codefresh/templates/seed/postgres-seed-job.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ spec:
3939
{{- include "codefresh.postgres-password-env-var-value" . | indent 12 }}
4040
- name: POSTGRES_HOSTNAME
4141
{{- include "codefresh.postgres-host-env-var-value" . | indent 12 }}
42+
- name: POSTGRES_SEED_USER
43+
{{- include "codefresh.postgres-seed-user-env-var-value" . | indent 12 }}
44+
- name: POSTGRES_SEED_PASSWORD
45+
{{- include "codefresh.postgres-seed-password-env-var-value" . | indent 12 }}
4246
resources:
4347
{{- toYaml .Values.seed.resources | nindent 10 }}
4448
command:

0 commit comments

Comments
 (0)