我一直在尝试使用 hiera 进行节点分类。我遵循了这个例子:http ://docs.puppetlabs.com/hiera/1/complete_example.html
我能够根据这个 json 文件为我的节点分配两个类:
{
"classes" : [ "ntp",
"base" ],
...
我可以在我的节点的 puppet 运行中看到这些类分配的效果,但是当我使用 Puppet Enterprise 3 控制台查看节点时,我只看到类pe_mcollective
已分配给节点。为什么 Puppet Enterprise Console 不知道我的节点已被分配类ntp
和base
?
谢谢