From 6968205016abc0cdd41bd2d16c27796a61372594 Mon Sep 17 00:00:00 2001 From: Enrico Candino Date: Thu, 16 Apr 2026 11:21:31 +0200 Subject: [PATCH] fix kubeconfig (#795) --- .github/workflows/test-conformance-shared.yaml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/test-conformance-shared.yaml b/.github/workflows/test-conformance-shared.yaml index 18ad48c..d89a120 100644 --- a/.github/workflows/test-conformance-shared.yaml +++ b/.github/workflows/test-conformance-shared.yaml @@ -88,7 +88,7 @@ jobs: rm -f k3d - - name: Install k3d and kubectl + - name: Install kubectl run: | curl -LO "https://dl.k8s.io/release/${{ env.KUBERNETES_VERSION }}/bin/linux/amd64/kubectl" curl -LO "https://dl.k8s.io/release/${{ env.KUBERNETES_VERSION }}/bin/linux/amd64/kubectl.sha256" @@ -133,8 +133,6 @@ jobs: - name: Setup K3k (from release) if: inputs.k3k_version != '' - env: - KUBECONFIG: /etc/rancher/k3s/k3s.yaml run: | K3K_VERSION="${{ inputs.k3k_version }}" CHART_VERSION="${K3K_VERSION#v}" @@ -148,8 +146,6 @@ jobs: sudo chmod +x /usr/local/bin/k3kcli - name: Wait for K3k controller - env: - KUBECONFIG: /etc/rancher/k3s/k3s.yaml run: | echo "Wait for K3k controller deployment to be available" kubectl wait -n k3k-system deployment -l "app.kubernetes.io/name=k3k" --for=condition=Available --timeout=5m