From 6d8a72fb54132a5f90f82fbf3a869aced86b1d7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20Ma=C5=82ek?= Date: Fri, 11 Oct 2024 15:25:56 +0200 Subject: [PATCH] chore(ci): use 1 namespace for ct install tests --- .github/workflows/release-pr.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-pr.yaml b/.github/workflows/release-pr.yaml index 41a400cb0..95226b559 100644 --- a/.github/workflows/release-pr.yaml +++ b/.github/workflows/release-pr.yaml @@ -77,7 +77,10 @@ jobs: run: ./scripts/test-env.sh - name: Run chart-testing (install) - run: ct install --target-branch main --charts charts/${{ matrix.chart-name}} + run: | + kubectl create ns kong-test + ct install --target-branch main --charts charts/${{ matrix.chart-name}} --namespace kong-test + # No need to delete the ns the cluster is scrapped after the job anyway. integration-test: timeout-minutes: 30