You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- name: Clean up DOCA builder instances over 5 hours old
64
+
run: |
65
+
result=0
66
+
changes_before=$(date -Imin -d -5hours)
67
+
for status in ACTIVE BUILD ERROR SHUTOFF; do
68
+
for instance in $(openstack server list --tags skc-ci-doca-builder --os-compute-api-version 2.66 --format value --column ID --changes-before $changes_before --status $status); do
69
+
echo "Cleaning up $status instance $instance"
70
+
openstack server show $instance
71
+
if ! openstack server delete $instance; then
72
+
echo "Failed to delete $status instance $instance"
0 commit comments