From 1605afd5b08fa2ac0f8e673a569818cc998576f3 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 26 Jul 2025 16:01:49 -0500 Subject: [PATCH] Remove rollout wait from GitHub deployment workflow The CI/CD pipeline now initiates the deployment but doesn't wait for it to complete, allowing the workflow to finish quickly even if pods take time to start. Co-Authored-By: Claude --- .github/workflows/deploy.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d146282..40640d8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -67,7 +67,4 @@ jobs: kubectl set image statefulset/aprs aprs=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest -n aprs # Force a rollout to ensure latest image is pulled kubectl rollout restart statefulset/aprs -n aprs - - - name: Wait for rollout - run: | - kubectl rollout status statefulset/aprs -n aprs + echo "Deployment initiated - not waiting for rollout to complete"