应用程序可能正在运行但暂时无法提供流量。例如,应用程序正在运行,但仍在从外部供应商加载其大型配置文件。在这种情况下,我们不想杀死容器,但我们也不希望它为流量提供服务:
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:
建立一个文件,这个pod通过了检查,状态变为ready。
适用于启动慢的应用(加载大量配置文件或需要下载依赖)。
httpGet方式:
apiVersion: v1
kind: Pod
metadata:
name: kplabs-troubleshoot
spec:
containers:
- name: nginx
image: nginx
readinessProbe:
httpGet:
path: /
port: 80
initialDelaySeconds: 5
periodSeconds: 5