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
At the moment the scheduler, executor and operations only support using http connections. This should be extended to add support for https.
One way is to add a use_https flag (default False) for each of the respective __init__ and set self.scheme to 'http' or 'https' like the following
if use_https:
self.scheme = 'https'
else:
self.scheme = 'http'
And the reference this scheme whenever creating a connection to the maser/agent
At the moment the scheduler, executor and operations only support using http connections. This should be extended to add support for https.
One way is to add a
use_https
flag (default False) for each of the respective__init__
and setself.scheme
to 'http' or 'https' like the followingAnd the reference this scheme whenever creating a connection to the maser/agent
A change is also needec to resolve the ip to a fqdn for the master/agent in order for the certificates to be validated
I have a patch that does exactly this which I can make PR from if this is an acceptable approach
The text was updated successfully, but these errors were encountered: