What's the best way in script to wait for a job or pod to complete in Kubernetes or Google Container Engine?
In particular, it would be better to be notified rather than polling for status in kubectl
, but I'd be happy with a fairly efficient loop without any slips between the cracks. Essentially, I'd like the equivalent of a plain docker run
since that blocks until command termination, but I don't want to use docker directly in this case.
I looked at Github Issue #1899 but it looks unresolved as yet.