chef-boneyard/chef-provisioning

bootstrap_no_proxy being ignored

kplimack opened this issue · 1 comments

it is trying to proxy to localhost:8889 even though localhost is listed as no_proxy.

machine 'chef-server' do
  machine_options transport_options: {
                    host: 'chef-server', 
                    username: 'kplimack',
                    options: {
                      prefix:  'sudo '
                    },
                    ssh_options: {
                      keys: ['/Users/kplimack/.ssh/id_rsa']
                    }
                  },
                  ssh_gateway: 'SSH_GATEWAY',
                  convergence_options: {
                    ssl_verify_mode: :verify_peer,
                    bootstrap_proxy: "http://myproxy_server:8080",
                    bootstrap_no_proxy: "localhost, *.mycompany.com"
                  }
end
[2016-02-23T16:07:15-08:00] DEBUG: Using myproxy_server:8080 for proxy
[2016-02-23T16:07:15-08:00] DEBUG: Initiating GET to http://localhost:8889/nodes/chef-server

same problem with machine_options as explained here #481 (comment)