From d7768e620fbe0b1fcfc5ea6de78d97e2153256d7 Mon Sep 17 00:00:00 2001 From: Brenda Chan Date: Wed, 1 Nov 2017 09:21:06 -0400 Subject: [PATCH] Removes 'rwx' permissions for global users - the tests make an assumption that the permissions on the /tmp dir have not been altered --- test/e2e/common/host_path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/common/host_path.go b/test/e2e/common/host_path.go index dbe80924f8a..2c14af0a60b 100644 --- a/test/e2e/common/host_path.go +++ b/test/e2e/common/host_path.go @@ -51,7 +51,7 @@ var _ = framework.KubeDescribe("HostPath", func() { fmt.Sprintf("--file_mode=%v", volumePath), } f.TestContainerOutput("hostPath mode", pod, 0, []string{ - "mode of file \"/test-volume\": dtrwxrwxrwx", // we expect the sticky bit (mode flag t) to be set for the dir + "mode of file \"/test-volume\": dtrwxrwx", // we expect the sticky bit (mode flag t) to be set for the dir }) })