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
This commit is contained in:
Hongbin Lu 2018-08-15 15:08:41 +00:00
parent d2b1f1b899
commit fd84e5affd

View File

@ -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)