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 <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-26 16:01:49 -05:00
parent aa5cfb8240
commit 1605afd5b0
No known key found for this signature in database

View file

@ -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"