Reputation: 818
I have setup a chef server and nodes. Now I want to run my cook book on a specific node. Is there a way to run a custom made cook book on a node using chef-dk without bootstrapping?
Upvotes: 0
Views: 268
Reputation: 54181
No, Chef requires a local agent program called chef-client
(or sometimes chef-solo
but that is only for advanced usage). You can install this agent however you like, knife bootstrap
is one option but you could bake it into your base OS image if you prefer.
Upvotes: 1