Remove pod cleanup for now
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 21s
Podman Rootless Demo / deploy-prod (push) Has been skipped

This commit is contained in:
continuist 2025-09-21 14:12:06 -04:00
parent 11f2dc15ef
commit 304d2f74d7

View file

@ -197,21 +197,6 @@ jobs:
--password-stdin \ --password-stdin \
"${{ secrets.REGISTRY_HOST }}" "${{ secrets.REGISTRY_HOST }}"
- name: Force cleanup all containers and pods
run: |
set -x
echo "=== Force stopping all containers ==="
podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote stop --time 5 2>/dev/null || true
echo "=== Force removing all containers ==="
podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote rm -f 2>/dev/null || true
echo "=== Force stopping all pods ==="
podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod stop --time 5 2>/dev/null || true
echo "=== Force removing all pods ==="
podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod rm -f 2>/dev/null || true
- name: Disk preflight diagnostic - name: Disk preflight diagnostic
run: | run: |
echo "=== Podman storage info ===" echo "=== Podman storage info ==="
@ -223,14 +208,6 @@ jobs:
echo "=== Inode info ===" echo "=== Inode info ==="
df -i /home/ci-service /tmp /var/tmp 2>/dev/null || df -i /tmp /var/tmp df -i /home/ci-service /tmp /var/tmp 2>/dev/null || df -i /tmp /var/tmp
- name: Safe storage pruning
run: |
set -x
echo "=== Pruning system ==="
podman --remote system prune -f
echo "=== Storage status after pruning ==="
podman --remote system df
- name: Build frontend container image - name: Build frontend container image
run: | run: |
# Create temp directory on larger filesystem # Create temp directory on larger filesystem