Merge "Cinder client does not honor disable_ssl_certificate_validation"
diff --git a/tempest/clients.py b/tempest/clients.py
index 444b4d9..ab89cfa 100644
--- a/tempest/clients.py
+++ b/tempest/clients.py
@@ -550,6 +550,7 @@
         auth_url = CONF.identity.uri
         region = CONF.identity.region
         endpoint_type = CONF.volume.endpoint_type
+        dscv = CONF.identity.disable_ssl_certificate_validation
         return cinderclient.client.Client(self.CINDERCLIENT_VERSION,
                                           username,
                                           password,
@@ -557,6 +558,7 @@
                                           auth_url,
                                           region_name=region,
                                           endpoint_type=endpoint_type,
+                                          insecure=dscv,
                                           http_log_debug=True)
 
     def _get_object_storage_client(self, username, password, tenant_name):