HEAT HTTPS SSL Support 15/9115/2
authorrsritesh <p.ritesh@tcs.com>
Tue, 2 Feb 2016 03:47:26 +0000 (06:47 +0300)
committerrsritesh <p.ritesh@tcs.com>
Thu, 4 Feb 2016 05:02:29 +0000 (08:02 +0300)
Currently yardstick does not provide the support for
OS_CACERT option.
The addition OS_CACERT options makes the user to use certificate
to communicate with the HEAT.

Closes-Bug: #YARDSTICK-227
Change-Id: I045c3f4b94dba9dfb6fd0e2706d758647d3fe4af
Signed-off-by: rsritesh <p.ritesh@tcs.com>
yardstick/orchestrator/heat.py

index 8d535c2..e6e6bca 100644 (file)
@@ -42,7 +42,8 @@ class HeatObject(object):
                 auth_url=os.environ.get('OS_AUTH_URL'),
                 username=os.environ.get('OS_USERNAME'),
                 password=os.environ.get('OS_PASSWORD'),
-                tenant_name=os.environ.get('OS_TENANT_NAME'))
+                tenant_name=os.environ.get('OS_TENANT_NAME'),
+                cacert=os.environ.get('OS_CACERT'))
 
         return self._keystone_client