kubernetes/test/e2e/node
Patrick Ohly d4729008ef e2e: simplify test cleanup
ginkgo.DeferCleanup has multiple advantages:
- The cleanup operation can get registered if and only if needed.
- No need to return a cleanup function that the caller must invoke.
- Automatically determines whether a context is needed, which will
  simplify the introduction of context parameters.
- Ginkgo's timeline shows when it executes the cleanup operation.
2022-12-13 08:09:01 +01:00
..
apparmor.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
crictl.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
events.go e2e: simplify test cleanup 2022-12-13 08:09:01 +01:00
examples.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
framework.go update ginkgo from v1 to v2 and gomega to 1.19.0 2022-07-08 10:44:46 +08:00
kubelet.go e2e: simplify test cleanup 2022-12-13 08:09:01 +01:00
kubelet_perf.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
mount_propagation.go e2e: simplify test cleanup 2022-12-13 08:09:01 +01:00
node_problem_detector.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
OWNERS Remove ehashman from sig-node roles 2022-11-01 12:16:43 -07:00
pod_gc.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
pods.go e2e: simplify test cleanup 2022-12-13 08:09:01 +01:00
pre_stop.go e2e: simplify test cleanup 2022-12-13 08:09:01 +01:00
README.md Update deprecated links 2019-02-15 09:13:07 -05:00
runtimeclass.go e2e: simplify test cleanup 2022-12-13 08:09:01 +01:00
security_context.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
ssh.go e2e: accept context from Ginkgo 2022-12-10 19:50:18 +01:00
taints.go e2e: simplify test cleanup 2022-12-13 08:09:01 +01: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.