在将我的应用程序部署到Kubernetes期间,我遇到了这样的问题:
Waiting for deployment "yourapplication" rollout to finish: 0 of 1 updated
replicas are available...
Waiting for deployment spec update to be observed...
Waiting for deployment "yourapplication" rollout to finish: 1 out of 2 new
replicas have been updated...
Waiting for deployment "yourapplication" rollout to finish: 1 out of 2 new
replicas have been updated...
Waiting for deployment "yourapplication" rollout to finish: 0 of 2 updated
replicas are available... 此外,我还得到了错误消息:
**2019-06-13T12:01:41.0216723Z error: deployment "yourapplication" exceeded
its progress deadline
2019-06-13T12:01:41.0382482Z ##[error]error: deployment "yourapplication"
exceeded its progress deadline
2019-06-13T12:01:41.0396315Z ##[error]/usr/local/bin/kubectl failed with
return code: 1
2019-06-13T12:01:41.0399786Z ##[section]Finishing: kubectl rollout
**发布于 2019-06-17 12:20:04
**2019-06-13T12:01:41.0216723Z错误:部署"yourapplication“超过其进度截止日期2019-06-13T12:01:41.0382482Z ##errorerror:部署"yourapplication”超过其进度截止日期
您可以尝试提高部署的进度截止日期:
https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#progress-deadline-seconds
https://stackoverflow.com/questions/56630995
复制相似问题