insecure flag added to novaclient

Adding the insecure config option
allows insecure SSL requests to
the novaclient to go through.

Change-Id: I54894f73ff828a35c8671c4e9e5c9eec588d0d2e
Closes-Bug: #1294438
This commit is contained in:
Ana Malagon 2014-03-18 14:41:18 -04:00
parent 39357afff1
commit 977402a4fc

View File

@ -55,6 +55,7 @@ class Client(object):
region_name=conf.os_region_name,
endpoint_type=conf.os_endpoint_type,
cacert=conf.os_cacert,
insecure=conf.insecure,
no_cache=True)
def _with_flavor_and_image(self, instances):