我正在尝试使用bitnami/zookeeper映像为zookeeper添加活动性和就绪性探测,但是pod创建失败,请告诉我需要在活动性和就绪性探测中添加哪些值。
下面是我尝试过的值。
livenessProbe:
enabled: true
initialDelaySeconds: 120
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
readinessProbe:
enabled: true
initialDelaySeconds: 120
periodSeconds: 30
timeoutSeconds: 5
failureThreshold: 6
successThreshold: 1
我收到以下错误。
[指定容器[0]。活动探测:要求值:必须指定处理程序类型,规范容器[0]。readinessProbe:要求值:必须指定处理程序类型]
1条答案
按热度按时间2ic8powd1#
Kubernetes探测器作为livenessProbe和readinessProbe需要用于探测器的
handler
。Kubernetes支持多种处理程序类型,例如HTTP请求探测器或活动命令探测器。还有其他处理程序类型,例如TCP probes
。您可以在documentation中找到所有支持的处理程序类型。请注意,处理程序配置是必需的,并且没有默认的处理程序类型。