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:
parent
aa5cfb8240
commit
1605afd5b0
1 changed files with 1 additions and 4 deletions
5
.github/workflows/deploy.yml
vendored
5
.github/workflows/deploy.yml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue