k8s-学习笔记11-容器探针
必要性
在一个服务中,是存在进程在运行,但服务其实已经挂掉了,表现为端口监听失败、http请求失败等。所以需要存活探针
LivenessProbe
readinessProbe
业务探针(Readiness probe)_云容器实例 CCI_开发指南_使用Service和Ingress管理网络访问_华为云 (huaweicloud.com)
通过ep实现对pod的加入和摘除,service就会将流量导入就绪的pod。
使用http探测check接口,Readiness Probe向Pod发送HTTP请求,当Probe收到2xx或3xx返回时,说明Pod已经就绪。