From d5e838f86414e0a60fed90cb10f6bfb991312de8 Mon Sep 17 00:00:00 2001 From: Matthew Wong Date: Mon, 15 Jul 2019 13:03:26 -0700 Subject: [PATCH] Create C:\tmp if DNE --- test/e2e/windows/volumes.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/e2e/windows/volumes.go b/test/e2e/windows/volumes.go index e8fe8814b74..94906555798 100644 --- a/test/e2e/windows/volumes.go +++ b/test/e2e/windows/volumes.go @@ -47,10 +47,11 @@ var _ = SIGDescribe("Windows volume mounts ", func() { Medium: v1.StorageMediumDefault, }, } - - hostMapSource = v1.VolumeSource{ + hostPathDirectoryOrCreate = v1.HostPathDirectoryOrCreate + hostMapSource = v1.VolumeSource{ HostPath: &v1.HostPathVolumeSource{ Path: hostMapPath, + Type: &hostPathDirectoryOrCreate, }, } )