From fd84e5affdf6c39dad956e0a309bc0237e068e2f Mon Sep 17 00:00:00 2001 From: Hongbin Lu Date: Wed, 15 Aug 2018 15:08:41 +0000 Subject: [PATCH] Use 'volumev3' as a service type Tempest has removed 'api_version' [1] that was used to select service type, so we explicitely specifies volume v3 as service type. [1] https://review.openstack.org/#/c/590096/ Change-Id: I85e6af13a9301228abf94872b005e196a11d0ae9 --- zun_tempest_plugin/tests/tempest/api/clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zun_tempest_plugin/tests/tempest/api/clients.py b/zun_tempest_plugin/tests/tempest/api/clients.py index 7ebc8e2..67d8948 100644 --- a/zun_tempest_plugin/tests/tempest/api/clients.py +++ b/zun_tempest_plugin/tests/tempest/api/clients.py @@ -76,7 +76,7 @@ class Manager(manager.Manager): self.sgs_client = security_groups_client.SecurityGroupsClient( self.auth_provider, 'network', CONF.identity.region) self.vol_client = volumes_client.VolumesClient( - self.auth_provider, 'volume', CONF.identity.region) + self.auth_provider, 'volumev3', CONF.identity.region) self.container_client = ZunClient(self.auth_provider) self.neutron_client = networks_client.NetworksClient( self.auth_provider, 'network', CONF.identity.region)