【问题标题】:Chef solo can't find cookbook during kitchen test run厨师独奏在厨房试运行期间找不到食谱
【发布时间】:2015-11-17 16:00:02
【问题描述】:

我正在尝试为我们用来配置 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)

这表明 chef-solo 找不到食谱 mbp-jenkins。我希望它能够找到它,因为我们在 solo.rb 文件中定义食谱路径如下:

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

【问题讨论】:

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


    【解决方案1】:

    您是否尝试过改用 chef_zero 供应商?我怀疑你的问题是因为 chef solo 没有运行 Berkshelf,这可以解释丢失的食谱。

    例如看:

    How to customise a tomcat recipe in Chef

    更新

    问题似乎是 site-cookbooks 目录中的说明书没有被复制到目标机器上。

    在我看来,最简单和最好的解决方法是将本地食谱包含在您的 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
    

    【讨论】:

    • 我认为这不是问题 - 看起来 Berkshelf 运行成功完成。找不到的说明书实际上位于 /site-cookbooks/ 目录中,而不是由 Berkshelf 管理的依赖项。我已经更新了我的问题,以包括厨师零给我的输出。我认为问题在于厨师没有在 /site-cookbooks/ 目录中查找 mbp-jenkins 食谱
    • @PiX06 也许你应该在你的 berksfile 中包含所有的食谱?
    猜你喜欢
    • 1970-01-01
    • 2015-11-27
    • 2015-10-23
    • 2020-09-04
    • 2013-11-03
    • 1970-01-01
    • 2021-11-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多