我正在编写我的第一套食谱来安装 grafana(用于 StatsD)。
但是,当我执行 inlcude_recipe("grafana::default") 时,会选择我本地食谱未提供的食谱(我从上游猜测)。
我正在使用 kitchen.ci 来“收敛”——主厨运行成功完成。
我在这里错过了什么(或做错了什么)?
我的文件夹结构
/cookbooks
|- /chef-grafana
|-- < folder structure from author of https://github.com/JonathanTron/chef-grafana - I cloned this repo >
|- /my_statsd_graphite_grafana_cookbook
|-- /recipes
|--- default.rb
|-- /attributes
|-- metadata.rb
|-- Berksfile
元数据.rb
name("my_statsd_graphite_grafana_cookbook")
version("1.0")
depends("apt")
depends("statsd")
depends("graphite")
depends("grafana")
recipe("my_statsd_graphite_grafana_cookbook", "StatsD Recipe")
伯克斯文件
source 'https://supermarket.chef.io'
metadata
cookbook 'apt', git: 'git://github.com/opscode-cookbooks/apt.git'
cookbook 'statsd', git: 'git://github.com/librato/statsd-cookbook.git'
cookbook 'graphite', git: 'git://github.com/hw-cookbooks/graphite.git'
cookbook "grafana", path: "../chef-grafana"
默认.rb
include_recipe("apt")
# Solve some deps
install_packages = ["python-pip", "python-dev", "build-essential", "unzip"]
install_packages.each { |install_package|
package(install_package)
}
# Include statsd recipes
include_recipe("statsd::default")
include_recipe("graphite::packages")
include_recipe("graphite::carbon")
# Include grafana recipes
include_recipe("grafana::default")
我什至尝试在克隆的 chef-grafana default.rb 配方中进行许多调试日志,但它们从未被调用。
我错过了什么?
非常感谢。