在厨房试运行期间,厨师独奏无法找到食谱

时间:2015-08-24 09:26:15

标签: ruby chef chef-solo berkshelf test-kitchen

我正在尝试为我们用来配置Jenkins CI实例的一堆烹饪书添加一个测试厨房。

我们使用Berkshelf来管理依赖项。文件结构如下:

|   .gitignore
|   .kitchen.yml
|   Berksfile
|   Berksfile.lock
|   bootstrap.sh
|   chefignore
|   metadata.rb
|   provision.sh
|   readme.md
|   solo.json
|   solo.rb
|   tree.txt
|   VERSION
|   
+---.kitchen
|   |   default-ubuntu-1404.yml
|   |   
|   +---kitchen-vagrant
|   |   \---kitchen-chef-jenkins-default-ubuntu-1404
|   |       |   Vagrantfile
|   |       |   
|   |       \---.vagrant
|   |           \---machines
|   |               \---default
|   |                   \---virtualbox
|   |                           action_set_name
|   |                           id
|   |                           index_uuid
|   |                           private_key
|   |                           synced_folders
|   |                           
|   \---logs
|           default-centos-71.log
|           default-ubuntu-1404.log
|           kitchen.log
|           
+---site-cookbooks
|   +---ant
|   |   |   .gitignore
|   |   |   .kitchen.yml
|   |   |   Berksfile
|   |   |   CHANGELOG.md
|   |   |   chefignore
|   |   |   CONTRIBUTING.md
|   |   |   LICENSE
|   |   |   metadata.rb
|   |   |   README.md
|   |   |   TESTING.md
|   |   |   Thorfile
|   |   |   
|   |   +---attributes
|   |   |       default.rb
|   |   |       
|   |   +---providers
|   |   |       library.rb
|   |   |       
|   |   +---recipes
|   |   |       default.rb
|   |   |       install_package.rb
|   |   |       install_source.rb
|   |   |       
|   |   +---resources
|   |   |       library.rb
|   |   |       
|   |   \---templates
|   |       \---default
|   |               ant_home.sh.erb
|   |               
|   +---haxe_cookbook
|   |   |   CHANGELOG.md
|   |   |   metadata.rb
|   |   |   README.md
|   |   |   
|   |   \---recipes
|   |           default.rb
|   |           
|   \---mbp-jenkins
|       |   Berksfile
|       |   Berksfile.lock
|       |   CHANGELOG.md
|       |   chefignore
|       |   metadata.rb
|       |   README.md
|       |   
|       +---recipes
|       |       default.rb
|       |       
|       +---resources
|       |   |   commons-net-3.3.jar
|       |   |   
|       |   +---css
|       |   |       style.css
|       |   |       
|       |   +---images
|       |   |       logo-mbp.png
|       |   |       web.png
|       |   |       
|       |   \---js
|       |           scripts.js
|       |           
|       \---templates
|           +---default
|           |   |   config.xml
|           |   |   
|           |   \---secrets
|           |           hudson.console.AnnotatedLargeText.consoleAnnotator
|           |           hudson.model.Job.serverCookie
|           |           hudson.util.Secret
|           |           jenkins.security.ApiTokenProperty.seed
|           |           jenkins.slaves.JnlpSlaveAgentProtocol.secret
|           |           master.key
|           |           org.acegisecurity.ui.rememberme.TokenBasedRememberMeServices.mac
|           |           org.jenkinsci.main.modules.instance_identity.InstanceIdentity.KEY
|           |           
|           \---emails
|                   build-complete.html.groovy
|                   build-started.html.groovy
|                   
\---test
    \---integration
        \---default

执行:

kitchen converge default-ubuntu-1404

导致以下错误:

    [2015-08-24T09:13:24+00:00] ERROR: Cookbook mbp-jenkins not found. If you're loading mbp-jenkins from another cookbook, make sure you configure the dependency in your metadata
[2015-08-24T09:13:24+00:00] FATAL: Chef::Exceptions::ChildConvergeError: Chef run process exited unsuccessfully (exit code 1)

这表明厨师独唱无法找到mbp-jenkins的食谱。我希望它能找到它,因为我们在solo.rb文件中定义了cookbook路径,如下所示:

root = File.absolute_path(File.dirname(__FILE__))

file_cache_path 'cache'
cookbook_path [root + "/cookbooks", root + "/site-cookbooks",root + "/berks-cookbooks"]

不确定这里出了什么问题所以任何建议都会受到赞赏

更新

我尝试使用厨师零配置器,然而它给了我输出:

================================================================================
Error Resolving Cookbooks for Run List:
================================================================================

Missing Cookbooks:
------------------
No such cookbook: mbp-jenkins

Expanded Run List:
------------------
* mbp-jenkins::default

1 个答案:

答案 0 :(得分:2)

您是否尝试过使用chef_zero配置器?我怀疑你的问题是因为厨师独唱不会运行Berkshelf,这可以解释缺少的食谱。

例如见:

How to customise a tomcat recipe in Chef

更新

问题似乎是site-cookbooks目录中的cookbook不会被复制到目标计算机上。

对我来说,最简单和最好的解决方法是在Berksfile中包含本地食谱,如下所示:

source 'https://supermarket.chef.io'

cookbook 'ant',           path: 'site-cookbooks/ant'
cookbook 'haxe_cookbook', path: 'site-cookbooks/haxe_cookbook'
cookbook 'mbp-jenkins',   path: 'site-cookbooks/mbp-jenkins'

metadata