Merge pull request #80182 from wongma7/windows-hostpath-test-master

Create C:\tmp if DNE
This commit is contained in:
Kubernetes Prow Robot 2019-08-28 22:11:55 -07:00 committed by GitHub
commit 37016c3364
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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