test(ci): correct kubeconfig environment variable usage in UI E2E tests

- Changed the kubeconfig file creation step in the UI E2E tests workflow to use the environment variable directly instead of accessing it through secrets.
- This adjustment ensures proper handling of the kubeconfig setup for Kubernetes provider tests.
This commit is contained in:
StylusFrost
2025-10-23 13:26:32 +02:00
parent 1cec011d8d
commit 83540472e4
+1 -1
View File
@@ -46,7 +46,7 @@ jobs:
- name: create kubeconfig file
run: |
mkdir -p /home/runner/.kube
echo "${{ secrets.E2E_KUBERNETES_KUBECONFIG }}" > /home/runner/.kube/config
echo "$E2E_KUBERNETES_KUBECONFIG" > /home/runner/.kube/config
- name: Checkout repository
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Fix API data directory permissions