From 612fcdaf737cd70212c46cb31cc2ef5367d6bb8a Mon Sep 17 00:00:00 2001 From: carlory Date: Fri, 17 Jan 2025 13:53:41 +0800 Subject: [PATCH] add a comment for features.Flexvolumes --- test/e2e/feature/feature.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/e2e/feature/feature.go b/test/e2e/feature/feature.go index e9439d69d79..21fb0b305aa 100644 --- a/test/e2e/feature/feature.go +++ b/test/e2e/feature/feature.go @@ -149,7 +149,11 @@ var ( // Testing eviction manager Eviction = framework.WithFeature(framework.ValidFeatures.Add("Eviction")) - // TODO: document the feature (owning SIG, when to use this feature for a test) + // OWNER: sig-storage + // These tests need kube-controller-manager that can execute a shell (bash). Most Kubernetes e2e + // tests run with kube-controller-manager as a distroless container without such a shell. + // If you need to run these tests, please build your own image with required packages (like bash). + // See https://github.com/kubernetes/kubernetes/issues/78737 for more details. Flexvolumes = framework.WithFeature(framework.ValidFeatures.Add("Flexvolumes")) // TODO: document the feature (owning SIG, when to use this feature for a test)