Merge pull request #11202 from chuanchang/fix_issue_11201
e2e tests: fix overlay: Unknown option vfs.imagestore
This commit is contained in:
commit
1c4b085e54
|
|
@ -264,6 +264,11 @@ func PodmanTestCreateUtil(tempDir string, remote bool) *PodmanTestIntegration {
|
||||||
if rootless.IsRootless() {
|
if rootless.IsRootless() {
|
||||||
storageFs = ROOTLESS_STORAGE_FS
|
storageFs = ROOTLESS_STORAGE_FS
|
||||||
}
|
}
|
||||||
|
if os.Getenv("STORAGE_FS") != "" {
|
||||||
|
storageFs = os.Getenv("STORAGE_FS")
|
||||||
|
storageOptions = "--storage-driver " + storageFs
|
||||||
|
}
|
||||||
|
|
||||||
p := &PodmanTestIntegration{
|
p := &PodmanTestIntegration{
|
||||||
PodmanTest: PodmanTest{
|
PodmanTest: PodmanTest{
|
||||||
PodmanBinary: podmanBinary,
|
PodmanBinary: podmanBinary,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue