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]