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
knife-openstack 0.10.0 (at least) is not making use of knife.rb proxy settings and is instead making use of shell environment variables:
# knife.rb
# ...
no_proxy '*.our.com" # Being ignored!
http_proxy 'http://whatever.our.com:80' # Probably this too
https_proxy 'http://whatever.our.com:80' # and this too
# ...
This is what happens:
% knife openstack server list
FATAL: Connection failure, please check your OpenStack authentication URL.
% unset http_proxy
% unset https_proxy
% unset HTTP_PROXY
% knife openstack server list
<works fine!>
The text was updated successfully, but these errors were encountered:
knife-openstack 0.10.0 (at least) is not making use of knife.rb proxy settings and is instead making use of shell environment variables:
This is what happens:
The text was updated successfully, but these errors were encountered: