Vagrant需要roles.json中的属性来破坏现有的Chef项目

时间:2011-05-26 00:28:55

标签: chef vagrant

我有一个现有的chef-solo项目,我尝试添加vagrant支持。我通常使用刀在EC2服务器上使用Canonical发布的Ubuntu 10.04 AMI烹饪这些食谱。

Vagrant要求我将chef_typejson_class属性添加到我的工作roles/*.json文件中,如下所示:

{
  "name": "memcached",
  "chef_type": "role",
  "json_class": "Chef::Role",
  "run_list": ["base", "memcached"]
}

如果我将这些添加到角色定义文件中,那么我会收到下一个错误。据推测,这些属性告诉chef将我的JSON文件视为Chef :: Role类的实例。

[default] [Thu, 26 May 2011 02:19:44 +0200] DEBUG: NoMethodError: undefined method `run_list_for' for {"name"=>"memcached", "run_list"=>["wantsa", "memcached"]}:Hash
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/run_list/run_list_expansion.rb:139:in `expand_run_list_items'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/run_list/run_list_expansion.rb:78:in `expand'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/run_list.rb:138:in `expand'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/node.rb:437:in `expand!'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/client.rb:249:in `build_node'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/client.rb:151:in `run'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/application/solo.rb:192:in `run_application'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/application/solo.rb:183:in `loop'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/application/solo.rb:183:in `run_application'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/../lib/chef/application.rb:66:in `run'
/opt/ruby/lib/ruby/gems/1.8/gems/chef-0.10.0/bin/chef-solo:25
/opt/ruby/bin/chef-solo:19:in `load'
/opt/ruby/bin/chef-solo:19

但是,当我尝试在EC2上烹饪相同的角色时,chef_typejson_class属性的存在会破坏该过程,从而产生下一个错误。据推测,这是因为在这种情况下,厨师希望将我的角色定义视为Ruby散列(并从中调用.delete

/usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/node.rb:379:in `consume_run_list': undefined method `delete' for #<Chef::Role:0x7fa337535138> (NoMethodError)
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/node.rb:370:in `consume_attributes'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/node.rb:358:in `consume_external_attrs'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/client.rb:222:in `build_node'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/client.rb:145:in `run'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/application/solo.rb:190:in `run_application'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/application/solo.rb:181:in `loop'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/application/solo.rb:181:in `run_application'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/../lib/chef/application.rb:62:in `run'
    from /usr/lib/ruby/gems/1.8/gems/chef-0.9.16/bin/chef-solo:25
    from /usr/bin/chef-solo:19:in `load'
    from /usr/bin/chef-solo:19
rake aborted!

当我删除chef_typejson_class时,我的EC2烹饪脚本会恢复正常工作,但随后Vagrant会崩溃。

我在chef-solo命令和Vagrant使用的命令之间看到的主要区别是我的chef-solo命令与我的roles.json文件有直接关系,而Vagrant在{{1}中包含文件。

矿:

dna.json

流浪:

ssh ubuntu@ec2-xxx-xxx-xxx-xxx.us-west-1.compute.amazonaws.com "cd /etc/chef; sudo env chef_environment=production chef-solo -l info -c config/solo.rb -j roles/memcached.json "

我是否可以通过某种方式配置Vagrantfile以使其正常工作?

2 个答案:

答案 0 :(得分:1)

虽然我没有遇到这个特殊的问题,但我注意到,如果你在不同版本的Chef上使用相同的食谱,那么作为移动目标的Chef往往会发生这样的奇怪事情。

为了消除这一点,我要尝试的第一件事就是让我的厨师版本保持一致。我看到你的Vagrant虚拟机使用的是版本0.10.0而你的EC2虚拟机正在使用0.9.16 - 无论哪个更重要,也许你可以在那个标准化 - 例如如果您尝试在本地复制您的EC2系统,您可以重新创建您的Vagrant基本框(或者查看自己制作的文件,在Vagrant网站上的文档相当不错),这样就可以更加贴近您安装的内容。 EC2。

答案 1 :(得分:0)

这应该在最新版本的Chef中修复。有一个JSON漏洞允许无限对象反序列化。我相信修复问题也会解决您在此处看到的问题。

尝试Chef 11和Vagrant 1.5.6