Removes 'rwx' permissions for global users

- the tests make an assumption that the permissions on the /tmp dir have not been altered
pull/6/head
Brenda Chan 2017-11-01 09:21:06 -04:00
parent 76f198399b
commit d7768e620f
1 changed files with 1 additions and 1 deletions

View File

@ -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
})
})