You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is impossible to specify a CA cert to use for authenticating OpenStack's certificate.
Unless OpenStack's cert is trusted by a CA that is included in the requests library itself (note that the requests library does NOT consult the CA certs bundle of the OS), the user must specify insecure: True in order to connect, but this is not secure.
This function will always end up passing either True or False to the verify kwarg of session.Session. We should also allow a string to be passed on. The string would be the path to the cert.
The text was updated successfully, but these errors were encountered:
It is impossible to specify a CA cert to use for authenticating OpenStack's certificate.
Unless OpenStack's cert is trusted by a CA that is included in the
requests
library itself (note that therequests
library does NOT consult the CA certs bundle of the OS), the user must specifyinsecure: True
in order to connect, but this is not secure.The reason is:
https://github.com/cloudify-cosmo/cloudify-openstack-plugin/blob/2.5.0/openstack_plugin_common/__init__.py#L588
This function will always end up passing either
True
orFalse
to theverify
kwarg ofsession.Session
. We should also allow a string to be passed on. The string would be the path to the cert.The text was updated successfully, but these errors were encountered: