fix mirror pod nfs test failure due to differing NFS versions

/exports *(rw,fsid=0,insecure,no_root_squash)

can be mounted as `/exports` using NFSv3 and `/` using NFSv4

Mount as '/', since clients that support both can try both.
This commit is contained in:
Todd Neal 2023-08-04 12:59:27 -05:00
parent d4fde1e92a
commit 717c149a73

View File

@ -348,7 +348,7 @@ func createStaticPodUsingNfs(nfsIP string, nodeName string, cmd string, dir stri
VolumeSource: v1.VolumeSource{
NFS: &v1.NFSVolumeSource{
Server: nfsIP,
Path: "/exports",
Path: "/",
ReadOnly: false,
},
},