要等待某个 pod 完成,命令是
kubectl wait --for=condition=Ready pod/pod-name
同样,我想等待 statefulset 中的任何一个 pod 准备好。我尝试了下面的命令,但它不起作用,
kubectl wait --for=condition=Ready statefulset/statefulset-name
命令选项应该是什么样的?
要等待某个 pod 完成,命令是
kubectl wait --for=condition=Ready pod/pod-name
同样,我想等待 statefulset 中的任何一个 pod 准备好。我尝试了下面的命令,但它不起作用,
kubectl wait --for=condition=Ready statefulset/statefulset-name
命令选项应该是什么样的?
我使用了以下,它对我有用
kubectl wait -l statefulset.kubernetes.io/pod-name=activemq-0 --for=condition=ready pod --timeout=-1s
kubectl rollout status --watch --timeout=600s statefulset/name-of-statefulset
来自https://github.com/kubernetes/kubernetes/issues/79606#issuecomment-779779928