Reputation: 4997
I am using Chef 12.x version of chef, using chef-server-ctl tool.
I am able to connect to the chef server with knife on my workstation. The cookbooks are getting uploaded and running on chef-clients.
But I am unable to find cookbooks on the chef server itself. Where are they stored?
Upvotes: 1
Views: 148
Reputation: 15784
They are stored in a S3 like system, metadata (files names, tree structure, etc.) are stored in postgresql, files in themselves are stored in bookshelf by their relative sha256sum in each organization the cookbook is uploaded too.
More insight in the documentation
Upvotes: 2