We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, in most of our tutorials/documentations, we require from user to wait for a given Action state. For example:
3. Get the status of the Action from the previous step: ``` capact action get mattermost ``` Wait until the Action is in `READY_TO_RUN` state.
or
3. Wait until the Action is in `READY_TO_RUN` status: ```bash watch -n 1 capact action get bigbang ```
It can be easily replaced with such syntax sugar:
capact act wait --for=phase=READY_TO_RUN
(inspired by kubectl wait command)
kubectl wait
Get rid of external CLI usage and simplify waiting for a given Action state.
The text was updated successfully, but these errors were encountered:
mszostok
Successfully merging a pull request may close this issue.
Description
Currently, in most of our tutorials/documentations, we require from user to wait for a given Action state. For example:
or
It can be easily replaced with such syntax sugar:
capact act wait --for=phase=READY_TO_RUN
(inspired by
kubectl wait
command)Reason
Get rid of external CLI usage and simplify waiting for a given Action state.
Use cases
The text was updated successfully, but these errors were encountered: