本文主要是介绍k8s容器启动不了,一直重启, 报红提示Not Ready,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
k8s容器启动不了,一直重启, 报红提示Not Ready
反复多次重启后,才能够启动成功。
发现是 启动时间过长,不断达到了失败阈值,于是会不断重启。
将 failureThreshold、 initialDelaySeconds、periodSeconds 这几个参数设置大一些,就可以启动了。
k8s探针类型及探针配置:
详情见: https://blog.csdn.net/sinat_32502451/article/details/139837159
示例:
livenessProbe:failureThreshold: 6httpGet:path: /my-service/act/healthport: 8110scheme: HTTPinitialDelaySeconds: 60periodSeconds: 20successThreshold: 1timeoutSeconds: 5name: my-serviceports:- containerPort: 8110protocol: TCPreadinessProbe:failureThreshold: 6httpGet:path: /my-service/act/healthport: 8110scheme: HTTPinitialDelaySeconds: 60periodSeconds: 20successThreshold: 1timeoutSeconds: 5
这篇关于k8s容器启动不了,一直重启, 报红提示Not Ready的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!