From 535e6495fa3e0ba36a1a3ded28650ae04136b669 Mon Sep 17 00:00:00 2001 From: Mikhail Klimko Date: Mon, 1 Dec 2025 12:57:58 +0300 Subject: [PATCH 1/3] feat: update dependencies --- charts/codefresh/Chart.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/codefresh/Chart.yaml b/charts/codefresh/Chart.yaml index 3547910a9..9754648b5 100644 --- a/charts/codefresh/Chart.yaml +++ b/charts/codefresh/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 description: Helm Chart for Codefresh On-Prem name: codefresh -version: 2.6.14 +version: 2.6.15 keywords: - codefresh home: https://codefresh.io/ @@ -17,9 +17,9 @@ annotations: artifacthub.io/alternativeName: "codefresh-onprem" artifacthub.io/containsSecurityUpdates: "false" # supported kinds are added, changed, deprecated, removed, fixed and security. - # artifacthub.io/changes: | - # - kind: fixed - # description: "Fixed an issue with incorrect Github Enterprise branch list endpoint." + artifacthub.io/changes: | + - kind: fixed + description: "Fixed an issue with incorrect Github Enterprise branch list endpoint." dependencies: - name: cf-common repository: oci://quay.io/codefresh/charts From 63fee4756300552a71a01fcb02efea00504bdd12 Mon Sep 17 00:00:00 2001 From: Mikhail Klimko Date: Mon, 1 Dec 2025 13:16:48 +0300 Subject: [PATCH 2/3] feat: update dependencies --- charts/codefresh/.ci/values/defaults.yaml | 105 ++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 charts/codefresh/.ci/values/defaults.yaml diff --git a/charts/codefresh/.ci/values/defaults.yaml b/charts/codefresh/.ci/values/defaults.yaml new file mode 100644 index 000000000..4f7c5cc5f --- /dev/null +++ b/charts/codefresh/.ci/values/defaults.yaml @@ -0,0 +1,105 @@ +seed-e2e: + enabled: true + +global: + appUrl: "" # placeholder + imagePullSecrets: + - codefresh-registry + - dockerhub-creds + +cfapi: + rbac: + namespaced: false + hpa: + enabled: true + resources: + requests: + cpu: 300m + memory: 1024Mi + container: + env: + DEFAULT_SYSTEM_TYPE: CLASSIC + +ingress: + enabled: true + ingressClassName: nginx + tls: + enabled: false + +ingress-nginx: + enabled: false + +argo-platform: + enabled: true + + analytics-reporter: + hpa: + enabled: true + + api-events: + hpa: + enabled: true + + api-graphql: + hpa: + enabled: true + resources: + requests: + cpu: 300m + memory: 1024Mi + + cron-executor: + hpa: + enabled: true + + event-handler: + hpa: + enabled: true + resources: + requests: + cpu: 300m + memory: 1024Mi + + ui: + hpa: + enabled: true + + audit: + hpa: + enabled: true + + abac: + hpa: + enabled: true + + promotion-orchestrator: + hpa: + enabled: true + +mongodb: + migration: + enabled: false + image: + repository: bitnamilegacy/mongodb + nodeSelector: + kubernetes.io/arch: amd64 + +consul: + image: + repository: bitnamilegacy/consul + +nats: + image: + repository: bitnamilegacy/nats + +rabbitmq: + image: + repository: bitnamilegacy/rabbitmq + +hooks: + mongodb: + nodeSelector: + kubernetes.io/arch: amd64 + rabbitmq: + nodeSelector: + kubernetes.io/arch: amd64 From 1453389adf02b28cff5cb35cc4ed19291141393c Mon Sep 17 00:00:00 2001 From: Mikhail Klimko Date: Mon, 1 Dec 2025 14:34:03 +0300 Subject: [PATCH 3/3] feat: update dependencies --- charts/codefresh/templates/secrets/regsecret.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/charts/codefresh/templates/secrets/regsecret.yaml b/charts/codefresh/templates/secrets/regsecret.yaml index 50a060885..ebb707c0e 100644 --- a/charts/codefresh/templates/secrets/regsecret.yaml +++ b/charts/codefresh/templates/secrets/regsecret.yaml @@ -1,4 +1,5 @@ {{ $name := printf "%v-%v-%v" .Release.Name .Values.global.codefresh "registry" }} + {{- if .Values.imageCredentials }} --- apiVersion: v1 kind: Secret @@ -20,4 +21,5 @@ metadata: type: kubernetes.io/dockerconfigjson data: .dockerconfigjson: {{ include "codefresh.imagePullSecret" . }} -{{- end }} \ No newline at end of file + {{- end }} +{{- end }}