In the docs, it says that one can add the following to their knife.rb
and have the nodes they provision with chef-client -z
get pointed to the chef server given:
with_chef_server "https://chef.example.com/organizations/yourorg",
:client_name => Chef::Config[:node_name],
:signing_key_filename => Chef::Config[:client_key]
when I do this the node being provisioned does not attempt to authenticate with my chef-server. How would I accomplish this?