diff options
author | rsritesh <p.ritesh@tcs.com> | 2016-02-02 06:47:26 +0300 |
---|---|---|
committer | rsritesh <p.ritesh@tcs.com> | 2016-02-04 08:02:29 +0300 |
commit | 8bf45f31bcdb454c7894ed6ed84529168995b2db (patch) | |
tree | 1e44e87e31ee2fe14bfc7744c39d1181a0e20579 | |
parent | 115bd363930d3c3c254369b1f5307abaf95cec28 (diff) |
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 <p.ritesh@tcs.com>
-rw-r--r-- | yardstick/orchestrator/heat.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |