1

在 Kubernetes v1.20 上运行

我配置了一个启动探针和一个活性探针。在容器第一次启动时,将执行启动探针,直到活性探针接管(如文档所述)。但是,如果 liveness 探测失败并且容器重新启动,则似乎不会再次执行启动探测。这是预期的行为吗?我在任何地方都找不到这个记录。

为了重现此问题,我正在运行以下容器定义(仅相关部分):

containers:
      - args:
        - /bin/sh
        - -c
        - touch /tmp/alive; sleep 10000
        image: busybox
        livenessProbe:
          exec:
            command:
            - /bin/sh
            - -c
            - touch /tmp/liveness; test -f /tmp/alive
          failureThreshold: 3
          initialDelaySeconds: 10
          periodSeconds: 2
          successThreshold: 1
          timeoutSeconds: 2
        startupProbe:
          exec:
            command:
            - touch
            - /tmp/startup
          failureThreshold: 3
          periodSeconds: 2
          successThreshold: 1
          timeoutSeconds: 2

因此,如果 liveness 探针运行,它会创建 /tmp/liveness。如果启动探测运行,它会创建 /tmp/startup。您可以通过删除 /tmp/alive 来模拟活动检查失败。

首次启动时:

$ ls /tmp/
alive     liveness  startup

之后rm /tmp/alive,活性检查失败并重新启动容器。然后,在新容器中:

$ ls /tmp/
alive     liveness

所以似乎启动探测不再执行。

4

1 回答 1

2

可能想检查您的 K8 版本是否是受此问题影响的版本:

https://github.com/kubernetes/kubernetes/issues/101064

或者

https://github.com/kubernetes/kubernetes/issues/102230

于 2021-11-29T14:40:42.367 回答