kubernetes/test/e2e/node
Vinay Kulkarni f2bd94a0de In-place Pod Vertical Scaling - core implementation
1. Core Kubelet changes to implement In-place Pod Vertical Scaling.
2. E2E tests for In-place Pod Vertical Scaling.
3. Refactor kubelet code and add missing tests (Derek's kubelet review)
4. Add a new hash over container fields without Resources field to allow feature gate toggling without restarting containers not using the feature.
5. Fix corner-case where resize A->B->A gets ignored
6. Add cgroup v2 support to pod resize E2E test.
KEP: /enhancements/keps/sig-node/1287-in-place-update-pod-resources

Co-authored-by: Chen Wang <Chen.Wang1@ibm.com>
2023-02-24 18:21:21 +00:00
..
apparmor.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
crictl.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
events.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
examples.go e2e: use Ginkgo context 2022-12-16 20:14:04 +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_perf.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
kubelet.go Revert "Add e2e tests for node log viewer" (#114636) 2022-12-21 08:07:27 -08:00
mount_propagation.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
node_problem_detector.go test: Simplify NPD start timestamp calculation 2023-02-08 13:58:45 -08:00
OWNERS Remove ehashman from sig-node roles 2022-11-01 12:16:43 -07:00
pod_gc.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
pod_resize.go In-place Pod Vertical Scaling - core implementation 2023-02-24 18:21:21 +00:00
pods.go Merge pull request #115606 from wzshiming/fix/termination_grace_period_seconds 2023-02-23 07:35:35 -08:00
pre_stop.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
README.md Update deprecated links 2019-02-15 09:13:07 -05:00
runtimeclass.go e2e node: Update runtime class handler skip logic 2023-01-24 14:43:24 -08:00
security_context.go Don't explicitly set image version in tests 2023-02-02 19:06:00 +01:00
ssh.go e2e: use Ginkgo context 2022-12-16 20:14:04 +01:00
taints.go e2e node tains stop controller with context 2022-12-18 22:44:20 +00: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.