From 027ae6cd73458ae4c4f22ae6e40fbd489a559a0b Mon Sep 17 00:00:00 2001 From: StylusFrost Date: Fri, 24 Oct 2025 11:08:49 +0200 Subject: [PATCH] test(ci): update kubeconfig context name in UI E2E tests workflow - Changed the Kubernetes context name from 'kind-kind' to 'kind' in the UI E2E tests workflow for better clarity and consistency. - Added a parameter to specify the Kind cluster name during its creation, ensuring proper integration with the Kubernetes setup. --- .github/workflows/ui-e2e-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ui-e2e-tests.yml b/.github/workflows/ui-e2e-tests.yml index 69d08cdf80..fa826606d6 100644 --- a/.github/workflows/ui-e2e-tests.yml +++ b/.github/workflows/ui-e2e-tests.yml @@ -46,11 +46,13 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - name: Create k8s Kind Cluster uses: helm/kind-action@v1 + with: + name: kind - name: Modify kubeconfig run: | # 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 set-cluster kind --server=https://kind-control-plane:6443 kubectl config view - name: Add network kind to docker compose run: |