bitnami/zookeeper和bitnami/kafka图像的活动/就绪探测失败

n8ghc7c1  于 2022-12-16  发布在  Apache
关注(0)|答案(1)|浏览(228)

我正在尝试使用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:要求值:必须指定处理程序类型]

2ic8powd

2ic8powd1#

Kubernetes探测器作为livenessProbe和readinessProbe需要用于探测器的handler。Kubernetes支持多种处理程序类型,例如HTTP请求探测器或活动命令探测器。还有其他处理程序类型,例如TCP probes。您可以在documentation中找到所有支持的处理程序类型。
请注意,处理程序配置是必需的,并且没有默认的处理程序类型。

相关问题