Fixed insecure passing in keystone module
As Keystone Client is passed already created Session object (L603), it doesn't take into an account client_args, so Session is created with default verify value. Change-Id: I428a80cfb99821053d27dcf8a4b130377467d469
This commit is contained in:
parent
966cb309e4
commit
884500daae
@ -609,7 +609,7 @@ class ManageKeystone(object):
|
||||
if variables_dict.pop('ignore_catalog'):
|
||||
client_args.update(endpoint_override=endpoint)
|
||||
auth = v3.Password(**auth_args)
|
||||
sess = session.Session(auth=auth)
|
||||
sess = session.Session(auth=auth, verify=(not insecure))
|
||||
self.keystone = client.Client(session=sess,
|
||||
**client_args)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user