-
Notifications
You must be signed in to change notification settings - Fork 237
Open
Description
Is there a built-in rosa wait cluster command? I find that Claude ends up writing little "wait" loops like this:
for i in {1..20}; do
STATE=$(rosa describe cluster -c kdreyer 2>/dev/null | grep "^State:" | awk '{print $2}')
echo "$(date '+%H:%M:%S') - State: $STATE"
if [[ "$STATE" == "ready" ]]; then
echo "Control plane is ready!"
break
fi
sleep 30
doneIt would be safer to have this as a built-in feature for rosa.
Looks like the test suite already has a decent WaitClusterStatus method.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels