目录
一、探针是什么
二、探针类型
2.1 livenessProbe
2.1.1 容器重启策略
2.2 readinessProbe
2.3 startupProbe
2.4 总结
2.5 探针示例
spec:
containers:
# 就绪探针
readinessProbe:
# 检测方式
httpGet:
# 超时时间
timeoutSeconds:
# 延迟时间
initialDelaySeconds:
# 失败次数限制
failureThreshold:
# 每多少秒检测一次
periodSeconds:
# 存活探针
livenessProbe:
# 检测方式
httpGet:
# 超时时间
timeoutSeconds:
# 延迟时间
initialDelaySeconds:
# 失败次数限制
failureThreshold:
# 每多少秒检测一次
periodSeconds:
2.6 配置字段介绍
这些字段可以精确的控制存活和就绪检测
在 httpGet 上配置额外的字段: