kubernetes/test/e2e/node
胡玮文 859bd02593 e2e: add TERM trap to pod sleep command
This should avoid the 30s delay caused by shell not responding to SIGTERM, and can only be killed by SIGKILL.

If the pod is deleted with the namespace during cleanup, this also makes cleanup faster, and frees up the resources for the next test cases faster.
2024-06-11 13:52:47 +08:00
..
apparmor.go Rename AppArmor annotation constants with Deprecated 2024-03-06 10:46:31 -08:00
crictl.go e2e tests: set all PSa labels instead of just enforcing 2023-06-21 15:05:13 +02:00
events.go test/e2e: do not use global variable for image 2024-04-22 19:29:39 +08:00
examples.go e2e: use framework labels 2023-11-01 15:17:34 +01:00
framework.go e2e: enhance SIGDescribe 2023-10-10 18:15:49 +02:00
kubelet.go Merge pull request #122594 from aravindhp/nlq-windows-e2e 2024-02-05 21:41:27 -08:00
kubelet_perf.go e2e: use framework labels 2023-11-01 15:17:34 +01:00
mount_propagation.go remove deprecated framework.ExpectNotEqual for node 2023-10-16 09:21:26 +08:00
node_problem_detector.go Move DockerHung test in the end 2024-04-16 17:48:16 +02:00
OWNERS Remove ehashman from sig-node roles 2022-11-01 12:16:43 -07:00
pod_gc.go e2e: use framework labels 2023-11-01 15:17:34 +01:00
pod_resize.go e2e: add TERM trap to pod sleep command 2024-06-11 13:52:47 +08:00
pods.go Merge pull request #120397 from ty-dc/StaticCheck 2023-10-24 05:25:52 +02:00
pre_stop.go e2e: remove redundant spaces in test names 2023-09-29 08:30:57 +02:00
README.md Update deprecated links 2019-02-15 09:13:07 -05:00
runtimeclass.go e2e: use framework labels 2023-11-01 15:17:34 +01:00
security_context.go e2e: enforce usage of WithFlaky instead of [Flaky] 2024-01-19 12:17:37 +01:00
ssh.go e2e tests: set all PSa labels instead of just enforcing 2023-06-21 15:05:13 +02:00
taints.go test/e2e: do not use global variable for image 2024-04-22 19:29:39 +08:00

WARNING: Do not add tests in this directory

There are two types of end-to-end tests in Kubernetes:

Tests located in ${KUBE_ROOT}/test/e2e/common are shared by both Cluster and Node E2E test jobs. Tests in ${KUBE_ROOT}/test/e2e_node are exclusively owned by Node E2E. If you want to add a test, most likely than not, you want to add the test to one of the two directories mentioned above. If you are unsure, please check with the OWNER of the directory. This directory currently contains misplaced and legacy tests; they will be cleaned up in the future.