From d0bc92df671f56b2ae15f68a71b5af1e2529f544 Mon Sep 17 00:00:00 2001 From: vamahaja Date: Thu, 3 Dec 2020 14:44:38 +0530 Subject: [TestFix] Add config to read i/o images Add support to pass I/O image from config file Change-Id: I2c943ba0efaeab3a44eef63030965f36f8086c1b --- tests/functional/arbiter/test_arbiter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/functional/arbiter') diff --git a/tests/functional/arbiter/test_arbiter.py b/tests/functional/arbiter/test_arbiter.py index a3c7279a..8a0a8f9e 100755 --- a/tests/functional/arbiter/test_arbiter.py +++ b/tests/functional/arbiter/test_arbiter.py @@ -155,7 +155,7 @@ class TestArbiterVolumeCreateExpandDelete(baseclass.BaseClass): mount_path = "/mnt" pod_name = openshift_ops.oc_create_tiny_pod_with_volume( self.node, self.pvc_name, "test-arbiter-pvc-mount-on-app-pod", - mount_path=mount_path) + mount_path=mount_path, image=self.io_container_image_cirros) self.addCleanup(openshift_ops.oc_delete, self.node, 'pod', pod_name) # Wait for POD be up and running @@ -1513,7 +1513,7 @@ class TestArbiterVolumeCreateExpandDelete(baseclass.BaseClass): # Create PVC and corresponding App pod self.create_and_wait_for_pvc(sc_name=sc_name) dc_name, pod_name = self.create_dc_with_pvc( - self.pvc_name, is_busybox=True) + self.pvc_name, image=self.io_container_image_busybox) # Get vol info vol_info = openshift_ops.get_gluster_vol_info_by_pvc_name( -- cgit