Kubernetes wait on pod/job - Server Fault
serverfault.com › kubernetes-wait-on-pod-jobAug 28, 2019 · 4 Answers4. Show activity on this post. For wait to evaluate the state of a resource, you need to correctly identify it. For the second snippet, you need to provide the pod id instead of the job name: kubectl wait --timeout=-1s --for=condition=Completed pod/kaniko-5jbhf. However, the syntax seems correct for calling the job itself as job/kaniko.