迭代Chef中的节点

时间:2014-01-14 12:55:07

标签: nagios chef-recipe chef

有人可以帮我提供有关如何迭代节点文件夹中服务器的文档或建议。

我想使用它为nagios创建主机,主机组文件等。

1 个答案:

答案 0 :(得分:1)

您可以搜索所有节点:

nodes = search(:node, '*:*')

然后迭代这些结果

nodes.each do |node|
  # do something...
end