Readiness Probe

应用程序可能正在运行但暂时无法提供流量。例如,应用程序正在运行,但仍在从外部供应商加载其大型配置文件。在这种情况下,我们不想杀死容器,但我们也不希望它为流量提供服务:

image-20200322164215767

image-20200322164318010

示例

apiVersion: v1
kind: Pod
metadata:
  name: liveness2
spec:
  containers:
    - image: ubuntu
      name: ubuntu
      tty: true
      readinessProbe:
        exec:
          command:
          - cat
          - /tmp/healthy
        initialDelaySeconds: 5
        periodSeconds: 5

由于/tmp/healthy文件不存在,所以pod虽然running,但不会ready:

image-20200119201230343

建立一个文件,这个pod通过了检查,状态变为ready。

image-20200119201910264

应用场景

适用于启动慢的应用(加载大量配置文件或需要下载依赖)。

httpGet方式:

apiVersion: v1
kind: Pod
metadata:
  name: kplabs-troubleshoot
spec:
  containers:
  - name: nginx
    image: nginx

    readinessProbe:
      httpGet:
        path: /
        port: 80
      initialDelaySeconds: 5
      periodSeconds: 5