Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
402 views
in Technique[技术] by (71.8m points)

chef, Could not find cookbook in your cookbook path

in my chef-repo I added a cookbook

cookbooks/mycookbook

when i do

$ knife cookbook upload mycookbook 

I get

ERROR: Could not find cookbook php-1.3.1 in your cookbook path, skipping it
Uploaded 0 cookbooks.

What did I do wrong here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

A config.rb file is used to specify configuration details for knife, which is loaded every time the knife executable is run and is located by default at ~/.chef/config.rb (and if i am not mistaken, you can also place it within the your chef repository directory at .chef/config.rb).

make sure that you set cookbook_path in config.rb

cookbook_path

The Chef Infra Client sub-directory for storing cookbooks. This value can be a string or an array of file system locations, processed in the specified order. The last cookbook is considered to override local modifications. For example:

cookbook_path [
  '/var/chef/cookbooks',
  '/var/chef/site-cookbooks'
]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...