kubernetes/test/e2e/node
Davanum Srinivas 1f59ea104a
Remove [Flaky] for green tests
Drops f.WithFlaky() from two test blocks where the tag has become stale:

- [sig-node] kubelet host cleanup with volume mounts [HostCleanup]
  (covers both NFS sub-tests: active and sleeping client pods)
- [sig-storage] PersistentVolumes-local "should set different fsGroup
  for second pod if first pod is deleted" (covers all 8 volume-type
  variants from the parameterized parent)

Testgrid evidence -- both dashboards show consistent passes across all
30 recent runs:
  https://testgrid.k8s.io/google-gce#gci-gce-flaky&include-filter-by-regex=Flaky
  https://testgrid.k8s.io/sig-testing-misc#gce-cos-master-flaky-repro&include-filter-by-regex=Flaky

History:
- HostCleanup was tagged [Flaky] in PR 41659 (merged 2017-04-13) as a
  quick workaround for parallel-execution interference with disruptive
  tests; the follow-up "remove [Flaky]" PR mentioned in that body never
  landed. Root-cause issue 31272 ("Hung volumes can wedge the kubelet")
  remains open.
- fsGroup test was tagged [Flaky] in PR 75015 (merged 2019-03-06) to
  skip a race in DesiredStateOfWorld re-adding terminating-pod volumes.
  Root-cause issue 73168 ("Do not remount volume again after it is
  detached") remains open. The obsolete TODO comment referencing that
  issue is also removed.

If either test regresses, the safe rollback is to restore f.WithFlaky()
and reopen the conversation on issue 31272 / 73168.
2026-05-11 08:26:29 -04:00
..
apparmor.go Rename AppArmor annotation constants with Deprecated 2024-03-06 10:46:31 -08:00
container_termination_metrics.go kubelet: add terminated_containers_total metric 2026-03-18 02:22:29 +00:00
crictl.go Revert "Add retries to node's crictl test" 2025-09-08 20:35:31 -04:00
events.go E2E: remove unnecessary trailing spaces in test names 2026-01-07 12:05:43 +01: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
gpu.go test/e2e/node: explain v12.5 pin for cuda-samples on arm64 2026-04-20 07:07:50 -04:00
kubelet.go Remove [Flaky] for green tests 2026-05-11 08:26:29 -04:00
kubelet_authz.go Merge pull request #131409 from bertinatto/fix-authz-test 2025-05-08 14:39:15 -07:00
kubelet_perf.go clean up: remove loop variable capture 2026-04-28 23:53:27 +02:00
mount_propagation.go fix: Fix non-constant format string in framework.Logf call 2025-04-22 14:01:41 +08:00
node_lifecycle.go feat: Add matcher and conformance tests ensuring that RV is uint128 2025-10-01 00:01:50 +00:00
node_problem_detector.go deprecate nodefeature for feature labels 2025-01-20 17:02:59 -05:00
OWNERS Add ffromani as approver for kubelet resource managers and their tests 2025-01-14 13:18:40 +01:00
pod_admission.go Add integration tests. 2026-03-18 19:20:10 +00:00
pod_gc.go e2e: use framework labels 2023-11-01 15:17:34 +01:00
pod_resize.go Merge pull request #134950 from Karthik-K-N/fix-inplace-flake 2026-04-25 11:12:46 +05:30
pods.go Merge pull request #137749 from dims/dsrinivas/issue-135713-pod-status-exit-2 2026-03-21 23:28:24 +05:30
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: remove unnecessary trailing spaces in test names 2026-01-07 12:05:43 +01:00
security_context.go e2e test cases should support seccomp default, which is unconfined [LinuxOnly]. Execution failed. 2026-02-11 08:17:31 +08:00
ssh.go e2e tests: set all PSa labels instead of just enforcing 2023-06-21 15:05:13 +02:00
taints.go fix: enable and fixes rules from testifylint on test package 2024-06-30 05:44:47 +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.