You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Testname: Pod liveness probe, using local file, delayed by startup probe
62
-
Description: A Pod is created with liveness probe that uses ‘exec’ command to cat the non-existent /tmp/health file. Liveness probe MUST NOT fail until startup probe expires.
61
+
Testname: Pod startup probe restart
62
+
Description: A Pod is created with a failing startup probe. The Pod MUST be killed and restarted incrementing restart count to 1, even if liveness would succeed.
63
63
*/
64
-
framework.ConformanceIt("should *not* be restarted with a exec \"cat /tmp/health\" because startup probe delays it [NodeConformance]", func() {
64
+
framework.ConformanceIt("should be restarted startup probe fails [NodeConformance]", func() {
Testname: Pod liveness probe, using local file, delayed by startup probe
91
-
Description: A Pod is created with liveness probe that uses ‘exec’ command to cat the non-existent /tmp/health file. Liveness probe MUST fail after startup probe expires. The Pod MUST now be killed and restarted incrementing restart count to 1.
90
+
Testname: Pod liveness probedelayed (long) by startup probe
91
+
Description: A Pod is created with failing liveness and startup probes. Liveness probe MUST NOT fail until startup probe expires.
92
92
*/
93
-
framework.ConformanceIt("should be restarted with a exec \"cat /tmp/health\"because startup probe does not delay it long enough [NodeConformance]", func() {
93
+
framework.ConformanceIt("should *not* be restarted by liveness probe because startup probe delays it [NodeConformance]", func() {
Testname: Pod liveness probe, using local file, startup finished restart
120
-
Description: A Pod is created with liveness probe that uses ‘exec’ command to cat /temp/health file. The Container is started by creating /tmp/startup after 10 seconds, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1.
119
+
Testname: Pod liveness probe fails after startup success
120
+
Description: A Pod is created with failing liveness probe and delayed startup probe that uses ‘exec’ command to cat /temp/health file. The Container is started by creating /tmp/startup after 10 seconds, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1.
121
121
*/
122
-
framework.ConformanceIt("should be restarted with a exec \"cat /tmp/health\"after startup probe succeeds it [NodeConformance]", func() {
122
+
framework.ConformanceIt("should be restarted by liveness probe after startup probe enables it [NodeConformance]", func() {
123
123
cmd:= []string{"/bin/sh", "-c", "sleep 10; echo ok >/tmp/startup; sleep 600"}
0 commit comments