Merge pull request #33436 from kinzhi/kinzhi88

[zh]Update content/zh/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes.md
This commit is contained in:
Kubernetes Prow Robot 2022-05-04 03:07:50 -07:00 committed by GitHub
commit daccbfb469
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ kubelet 在容器内执行命令 `cat /tmp/healthy` 来进行探测。
当容器启动时,执行如下的命令:
```shell
/bin/sh -c "touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600"
/bin/sh -c "touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600"
```
<!--