From 2ba6b6a8963e2e5e8ab3b0c7077999597c8b1fe6 Mon Sep 17 00:00:00 2001 From: MichaelFisher1997 Date: Sat, 18 Apr 2026 17:45:59 +0000 Subject: [PATCH] fix: remove unused Flux CLI install from deploy workflow The deploy pipeline never uses the flux binary after installation, so the GitHub release download only adds a flaky failure point. Remove the step and keep the bootstrap path kubectl-only. --- .gitea/workflows/deploy.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index a1a6cc6..e71b5ba 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -241,12 +241,6 @@ jobs: curl -fsSL -o /usr/local/bin/kubectl "https://dl.k8s.io/release/$(curl -fsSL https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" chmod +x /usr/local/bin/kubectl - - name: Install flux CLI - run: | - curl -fsSL https://github.com/fluxcd/flux2/releases/download/v2.5.1/flux_2.5.1_linux_amd64.tar.gz | tar xz -C /tmp - mv /tmp/flux /usr/local/bin/flux - chmod +x /usr/local/bin/flux - - name: Rewrite kubeconfig for runner-reachable API working-directory: terraform run: |