Merge "nova_compute fails to start in tls-everywhere configuration"

This commit is contained in:
Zuul 2018-12-06 05:06:02 +00:00 committed by Gerrit Code Review
commit 38f7f7d9a7
2 changed files with 10 additions and 1 deletions

View File

@ -55,7 +55,7 @@ if __name__ == '__main__':
project_name=config.get('placement', 'project_name'),
project_domain_name=config.get('placement', 'user_domain_name'),
auth_url=config.get('placement', 'auth_url')+'/v3')
sess = session.Session(auth=auth)
sess = session.Session(auth=auth, verify=False)
keystone = client.Client(session=sess)
iterations_endpoint = iterations

View File

@ -0,0 +1,9 @@
---
fixes:
- |
With tls-everywhere enabled connecting to keystone endpoint fails
to retrieve the URL for the placement endpoint as the certificate
can not be verified. While verification is disabled to check the
placement endpoint later, it is not to communicate with keystone.
This disables certificate verification for communication with
keystone.