generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
issue/willfixThis issue will be worked onThis issue will be worked onkind/enhancementImprovement in current featureImprovement in current feature
Description
Current Behavior
Currently we are arbitrarily waiting 10 minutes waiting for the server to get provisioned and started.
Desired Behavior
We want to optimise on our waiting time by keeping track of the state variable by the machine
Implementation
The logic of this can look like
- If "state" == "provisioning", sleep 10s...
- If "state" == "active", echo "Machine successfully created!" and continue.
- If "state" == "failed", echo "Failed to create machine" and exit.
in the above mentioned bash script.
A little experimentation might be required based on the intervals on which we poll. (We do not want cause anything that might come under a DOS attack :) )
Acceptance Tests
A link to the self-hosted workflow run would be key to get your changes accepted
Metadata
Metadata
Assignees
Labels
issue/willfixThis issue will be worked onThis issue will be worked onkind/enhancementImprovement in current featureImprovement in current feature