mirror of
https://github.com/k3s-io/kubernetes.git
synced 2026-01-13 19:36:22 +00:00
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. e2e tests for local-volume plugin block devices **What this PR does / why we need it**: This PR contains e2e tests for local block devices, and it leverages the `BlockVolume` feature-gate. This PR can help us avoid regressions for local block volumes. For example, #60025. **Which issue(s) this PR fixes** : Fixes https://github.com/kubernetes/kubernetes/issues/60141 **Special notes for your reviewer**: These tests can be run with the following commands: ``` KUBE_FEATURE_GATES="MountPropagation=true,BlockVolume=true" NUM_NODES=1 go run hack/e2e.go -- --up go run hack/e2e.go -- -v --test --test_args="--ginkgo.focus=PersistentVolumes-local.*block” ``` **Release note**: ```release-note NONE ```