Merge pull request #11202 from chuanchang/fix_issue_11201

e2e tests: fix overlay: Unknown option vfs.imagestore
This commit is contained in:
OpenShift Merge Robot
2021-08-23 07:41:39 -04:00
committed by GitHub

View File

@ -264,6 +264,11 @@ func PodmanTestCreateUtil(tempDir string, remote bool) *PodmanTestIntegration {
if rootless.IsRootless() {
storageFs = ROOTLESS_STORAGE_FS
}
if os.Getenv("STORAGE_FS") != "" {
storageFs = os.Getenv("STORAGE_FS")
storageOptions = "--storage-driver " + storageFs
}
p := &PodmanTestIntegration{
PodmanTest: PodmanTest{
PodmanBinary: podmanBinary,