简介 我正在学习 Chef 以自动化工作中的服务器管理。我从这里下载了 chefdk 3.0 ,现在我正在尝试使用 chef 构建我的第一本食谱。
重要 的是,我在 Windows 环境中使用它进行测试,我确实希望它会失败,因为 Windows 没有 iptables,但我不希望它会因为找不到说明书而失败。我试过使用Windows 食谱,它可以工作。
问题 我能够创建食谱并运行它,但我无法从超市引用依赖项。
我尝试了两种选择:
备选方案 1
我使用以下命令创建食谱
chef generate cookbook learn_chef_httpd
(来自本教程)
我能够完成教程,现在我想测试参考另一本食谱,所以我选择了simple_iptables
我添加了这一行
cookbook 'simple_iptables', '~> 0.7.0'
到我的 Berksfile,如超市中所述。
然后我将这些行添加到我的 default.rb 文件中:
include_recipe 'simple_iptables'
# Allow HTTP, HTTPS
simple_iptables_rule "http" do
rule [ "--proto tcp --dport 80",
"--proto tcp --dport 443" ]
jump "ACCEPT"
end
我使用以下方法运行食谱:
chef-client --local-mode --runlist 'recipe[learn_chef_httpd]'
问题是厨师没有找到食谱
Chef::Exceptions::CookbookNotFound
----------------------------------
Cookbook simple_iptables not found. If you're loading simple_iptables from anoth er cookbook, make sure you configure the dependency in your metadata
我尝试将其添加到元数据中:
depends 'simple_iptables', '~> 0.7.0'
但我仍然得到一个错误:
Error Resolving Cookbooks for Run List:
Missing Cookbooks:
No such cookbook: simple_iptables
备选方案 2
我仍在努力让它发挥作用,所以我也尝试让它成为“berkshelf way”,所以我创建了一本新的食谱。
berks cookbook test
我添加了这一行
cookbook 'simple_iptables', '~> 0.7.0'
到我的 Berksfile,如超市中所述。
然后我将这些行添加到我的 default.rb 文件中:
include_recipe 'simple_iptables'
# Allow HTTP, HTTPS
simple_iptables_rule "http" do
rule [ "--proto tcp --dport 80",
"--proto tcp --dport 443" ]
jump "ACCEPT"
end
执行的berks安装:
伯克斯安装
并运行它:
chef-client --local-mode --runlist 'recipe[test]'
同样的错误又回来了
Chef::Exceptions::CookbookNotFound
----------------------------------
Cookbook simple_iptables not found. If you're loading simple_iptables from anoth er cookbook, make sure you configure the dependency in your metadata
我尝试将其添加到元数据中:
depends 'simple_iptables', '~> 0.7.0'
但我仍然得到一个错误:
Error Resolving Cookbooks for Run List:
Missing Cookbooks:
No such cookbook: simple_iptables
我查看了 ~/berkshelf 文件夹,食谱就在那里。
** 备选方案 3 **
我在 Amazon 上启动了一个 CentOS 6.5 EC2 实例,安装了 Ruby 2.1.3 和 Chef。创建了一个 ~/chef-repo/cookbooks 文件夹
我使用 berkshelf 创建了一本食谱,运行
bundle install
然后像在其他替代方案中一样添加参考/代码
berks install
并以我上次的方式运行。
我遇到了同样的问题。
我错过了什么?我需要什么才能让它工作?