万一我的集群中的 pod 出现故障,它需要大约 15 秒或更长时间才能通过就绪探测逻辑来确定故障,由于调用失败而不被接受(因为 kubernetes 没有识别出 pod 故障,所以它会将流量发送到失败的pod / 我的意思是失败的 pod 仍在 cluster-P 服务端点中)。
请在此处建议,如何立即使就绪探测失败或如何在失败时立即删除端点,而无需将 periodSeconds 减少到 5 秒以下。
下面是我的配置:
initialDelaySeconds:90s
periodSeconds:5s
timeoutSeconds:2s
successThreshold:<default>
failureThreshold:<default>
提前致谢。