From bc76a8cf25063138a0903e0679cd57b219f5e434 Mon Sep 17 00:00:00 2001 From: StylusFrost Date: Fri, 24 Oct 2025 11:05:52 +0200 Subject: [PATCH] test(ci): add kubectl config view step in UI E2E tests workflow - Included a step to view the current kubeconfig in the UI E2E tests workflow, aiding in debugging and verification of the Kubernetes context setup. - This addition enhances the workflow by providing visibility into the kubeconfig configuration during the test execution. --- .github/workflows/ui-e2e-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ui-e2e-tests.yml b/.github/workflows/ui-e2e-tests.yml index 627598379e..69d08cdf80 100644 --- a/.github/workflows/ui-e2e-tests.yml +++ b/.github/workflows/ui-e2e-tests.yml @@ -51,6 +51,7 @@ jobs: # Modify the kubeconfig to use the kind cluster server to https://kind-control-plane:6443 # from worker service into docker-compose.yml kubectl config set-cluster kind-kind --server=https://kind-control-plane:6443 + kubectl config view - name: Add network kind to docker compose run: | # Add the network kind to the docker compose to interconnect to kind cluster