简体   繁体   中英

Kubectl wait for one pod of a statefulset to be READY?

To wait for a certain pod to be completed the command is

kubectl wait --for=condition=Ready pod/pod-name

Similarly I want to wait for any one pod in the statefulset to be ready. I tried the command below which did not work,

kubectl wait --for=condition=Ready statefulset/statefulset-name

What should the command options look like?

我使用了以下内容,它对我有用

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM