From 46a7a4e9d86950db14152cde2950ffd00e5b3174 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Thu, 18 Jun 2026 12:23:49 -0500 Subject: [PATCH] Set USE_GKE_GCLOUD_AUTH_PLUGIN for GKE deploy workflow Modern gcloud CLI (>= 400) requires this env var so kubectl uses the installed gke-gcloud-auth-plugin binary instead of the deprecated application-default credentials path. Without it, kubectl commands silently fail even after get-credentials succeeds. --- .gitea/workflows/deploy-gke.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/deploy-gke.yaml b/.gitea/workflows/deploy-gke.yaml index c297425..7eb1b03 100644 --- a/.gitea/workflows/deploy-gke.yaml +++ b/.gitea/workflows/deploy-gke.yaml @@ -22,6 +22,9 @@ jobs: deploy: runs-on: ubuntu-latest + env: + USE_GKE_GCLOUD_AUTH_PLUGIN: "True" + steps: - name: Checkout uses: actions/checkout@v4