From 8bf45f31bcdb454c7894ed6ed84529168995b2db Mon Sep 17 00:00:00 2001
From: rsritesh 
Date: Tue, 2 Feb 2016 06:47:26 +0300
Subject: [PATCH] HEAT HTTPS SSL Support
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 
---
 yardstick/orchestrator/heat.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/yardstick/orchestrator/heat.py b/yardstick/orchestrator/heat.py
index 8d535c252..e6e6bcac1 100644
--- a/yardstick/orchestrator/heat.py
+++ b/yardstick/orchestrator/heat.py
@@ -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
 
-- 
2.16.6