-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Description
Ideally kubectl apply
would have something like a --wait
option, so you know the actual rollout of Pods (etc) completed successfully, but it doesn't. So the success of a deploy
here doesn't actually indicate the deploy succeeded, as the rollout happens asynchronously.
We could use kubectl rollout status
after the kubectl apply
, which blocks on deployment completion. It looks like you can even use -f
to track all the resources in the config file.
balser, msuterski, Dobiasd and IvanBoyko