我的服务 deployment.yaml 中有以下活性探针
livenessProbe:
failureThreshold: 3
httpGet:
path: /health
port: 9081
scheme: HTTP
initialDelaySeconds: 180
timeoutSeconds: 10
periodSeconds: 10
successThreshold: 1
我想测试探针实际上是否触发了 POD 重新部署,这是使其失败的最简单的方法?可能以编程方式。
更新:
更好地澄清这个问题,我不想更改应用程序中的代码,也不想暂停正在运行的容器。我想知道是否可以使用 kubernetes 或 docker 命令在运行时以某种方式阻止端点/端口。