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.
This commit is contained in:
StylusFrost
2025-10-24 11:08:49 +02:00
parent bc76a8cf25
commit 027ae6cd73
+3 -1
View File
@@ -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: |