From c449feaa950c5502547fc967e291e84dcfdcca91 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Thu, 19 Nov 2020 14:49:59 +0530 Subject: [PATCH] e2e: use centos as image for normal user validation Reduce the number of images that get pulled from Docker Hub. Use the official CentOS container registry instead. Signed-off-by: Madhu Rajanna (cherry picked from commit 168526a906e8c042af8095455bbd9938d1d48265) --- e2e/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/utils.go b/e2e/utils.go index 84227e326..af8b3c532 100644 --- a/e2e/utils.go +++ b/e2e/utils.go @@ -274,7 +274,7 @@ func validateNormalUserPVCAccess(pvcPath string, f *framework.Framework) error { Containers: []v1.Container{ { Name: "write-pod", - Image: "alpine", + Image: "registry.centos.org/centos:latest", Command: []string{"/bin/sleep", "999999"}, SecurityContext: &v1.SecurityContext{ RunAsUser: &user,