From de59a0b21118248aed0af562d246ac1bc95245ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=9Awiderski?= Date: Tue, 17 Feb 2026 13:21:58 +0100 Subject: [PATCH] test fixes for deploy local acs (#5049) * test fixes for deploy local acs * revert previous changes and add giov suggestion * updated memory for elastic search --- .github/acs-deployment-values-override.yaml | 6 ++++++ .github/workflows/pull-request.yml | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/.github/acs-deployment-values-override.yaml b/.github/acs-deployment-values-override.yaml index a6e900e4c..4f27e6147 100644 --- a/.github/acs-deployment-values-override.yaml +++ b/.github/acs-deployment-values-override.yaml @@ -24,3 +24,9 @@ global: - name: regcred alfrescoRegistryPullSecrets: regcred known_urls: http://localhost +elasticsearch: + elasticsearch: + resources: + limits: + cpu: "2" + memory: "1.5Gi" diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 7dc20bc43..b44b4c270 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -247,6 +247,12 @@ jobs: run: | kubectl logs -n ingress-nginx -l app.kubernetes.io/name=ingress-nginx --tail=-1 + - name: Spit cluster status after integration tests + if: always() + run: | + kubectl get all --all-namespaces + kubectl describe pod + finalize: if: ${{ always() }} needs: [lint, build, unit-tests, e2es-playwright]