如何启动交互式Chef客户端就像通过“rails console”启动一个rails?

时间:2011-12-21 05:53:49

标签: chef

在厨师工作站客户端,我想启动一个交互式控制台来调试和检查角色/配方,或者使用搜索api,例如。

 chef-client > nodes=search ("node","name:*")
 chef-client > puts "#{nodes}"

...

就像在rails中一样,使用“rails console”将所有rails环境加载到irb。

怎么做?

1 个答案:

答案 0 :(得分:7)

“shef”工具可能是您正在寻找的工具,它会在您的厨师环境中启动IRB会话,您可以在其中执行搜索,浏览和操作节点,角色等操作。甚至还有一个调试器可以执行通过你的食谱使用“断点”资源。

这是一个真实的基本例子

chef > nodes.list
=> [node[db1-production], node[worker1-production], node[app1-production]]
chef > nodes.show('app1-production').class
 => Chef::Node 

等。查看OpsCode维基页面:http://wiki.opscode.com/display/chef/Shef