From d6b7513f60538cdd3fd1fbfbdc3aa7593f009b10 Mon Sep 17 00:00:00 2001 From: "codefresh-v2-pipelines[bot]" <109073600+codefresh-v2-pipelines[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 14:50:07 +0000 Subject: [PATCH 1/4] [app-proxy]fix: app-proxy fails to report new and closed pr to product-components --- charts/gitops-runtime/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/gitops-runtime/values.yaml b/charts/gitops-runtime/values.yaml index 31c7146d..b3ddb1b8 100644 --- a/charts/gitops-runtime/values.yaml +++ b/charts/gitops-runtime/values.yaml @@ -565,7 +565,7 @@ app-proxy: tag: 1.1.16-main image: repository: quay.io/codefresh/cap-app-proxy - tag: d0f2de1 + tag: eab83ae pullPolicy: IfNotPresent # -- Extra volume mounts for main container extraVolumeMounts: [] From 2789dfb8807a75392c92c3e5842bb6fa41a4f157 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Wed, 1 Oct 2025 11:22:30 +0300 Subject: [PATCH 2/4] use specific gitea version for component tests --- tests/component-tests/setup/values/gitea.values.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/component-tests/setup/values/gitea.values.yaml b/tests/component-tests/setup/values/gitea.values.yaml index 4629621e..e6f72cce 100644 --- a/tests/component-tests/setup/values/gitea.values.yaml +++ b/tests/component-tests/setup/values/gitea.values.yaml @@ -14,3 +14,7 @@ postgresql-ha: enabled: false postgresql: enabled: true + image: + registry: docker.io + repository: bitnamicharts/gitea + tag: sha256-b5a2e4a468a66945d67ce4d34f1b1b3d98e7887d137ed285cf9b16e1c52446b1 From 48b556d3f386db91d1cb82484a90019294987202 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Wed, 1 Oct 2025 11:54:56 +0300 Subject: [PATCH 3/4] just change bitnami to bitnamilegacy postgresql image repository --- tests/component-tests/setup/values/gitea.values.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/component-tests/setup/values/gitea.values.yaml b/tests/component-tests/setup/values/gitea.values.yaml index e6f72cce..fcb15ef1 100644 --- a/tests/component-tests/setup/values/gitea.values.yaml +++ b/tests/component-tests/setup/values/gitea.values.yaml @@ -15,6 +15,4 @@ postgresql-ha: postgresql: enabled: true image: - registry: docker.io - repository: bitnamicharts/gitea - tag: sha256-b5a2e4a468a66945d67ce4d34f1b1b3d98e7887d137ed285cf9b16e1c52446b1 + repository: bitnamilegacy/postgresql From f55a9df8e3369ceb63dee4d27c41a8d86393d92f Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Wed, 1 Oct 2025 12:18:11 +0300 Subject: [PATCH 4/4] use oci giteah helm chart, with specific version 12.3.0 --- .github/workflows/component-test.yaml | 1 - tests/component-tests/startup.yaml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/component-test.yaml b/.github/workflows/component-test.yaml index 3ce975d4..7f737e1e 100644 --- a/.github/workflows/component-test.yaml +++ b/.github/workflows/component-test.yaml @@ -63,7 +63,6 @@ jobs: chmod 700 get_helm.sh ./get_helm.sh - helm repo add gitea-charts https://dl.gitea.com/charts/ helm repo add mockserver https://www.mock-server.com diff --git a/tests/component-tests/startup.yaml b/tests/component-tests/startup.yaml index 69deeb37..768adea0 100644 --- a/tests/component-tests/startup.yaml +++ b/tests/component-tests/startup.yaml @@ -23,7 +23,7 @@ kind: TestSuite commands: - command: helm upgrade --install --namespace mockserver --create-namespace --version 5.14.0 --set="service.type=ClusterIP" mockserver mockserver/mockserver - command: kubectl -n mockserver wait --for=condition=available --timeout=120s deployment/mockserver - - command: helm install gitea gitea-charts/gitea --values ./setup/values/gitea.values.yaml -n gitea --create-namespace + - command: helm install gitea oci://docker.gitea.com/charts/gitea:12.3.0 --values ./setup/values/gitea.values.yaml -n gitea --create-namespace - command: kubectl -n gitea wait --for=condition=available --timeout=180s deployment/gitea - script: ./setup/scripts/init.sh background: true