VCF Automation 9.1
An excessive number of support-bundle-cluster-info-dump jobs consumed all available node resources, preventing functional pods from scheduling.
1. Identify and delete all hanging support-bundle-cluster-info-dump jobs in the vmsp-platform namespace:
kubectl get jobs -n vmsp-platform | grep support-bundle-cluster-info-dump | awk '{print $1}' | xargs -I {} kubectl delete job {} -n vmsp-platform2.Suspend the support-bundle-cluster-info-dump cronjob to prevent recurring resource exhaustion.
kubectl patch cronjob support-bundle-cluster-info-dump -n vmsp-platform -p '{"spec" : {"suspend" : true }}'3.Verify that all pending pods transition to the "Running" state and validate portal accessibility.
kubectl get pods -n prelude | grep -vE 'Running|Completed'