嗨,我尝试使用 GCP LoadBalancer 的自定义运行状况检查。
我添加了readinessProbe
&livenessProbe
像这样:
readinessProbe:
httpGet:
path: /health
port: dash
initialDelaySeconds: 5
periodSeconds: 1
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 10
livenessProbe:
httpGet:
path: /health
port: dash
initialDelaySeconds: 5
periodSeconds: 1
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 10
但是当我创建我的入口时,我没有得到我的自定义健康检查