嵌套节点组存在一个奇怪的问题,因为我似乎无法将它们作为目标。这是我的主配置文件的“ nodegroups”部分:



/ etc / salt / master:

nodegroups:
  linuxlabs: 'E@^pubbox'
  linuxtest: 'N@linuxlabs'




现在,这是一个目标示例,该目标在嵌套节点组上失败,尽管它能够分别定位父节点组和主机。

[root@salt-master ~]# salt 'pubbox10.example.com' test.ping
pubbox10.example.com:
    True

[root@salt-master ~]# salt 'pubbox44.example.com' test.ping
pubbox44.example.com:
    True

[root@salt-master ~]# salt -N linuxtest test.ping
pubbox10.example.com:
    Minion did not return. [No response]
pubbox44.example.com:
    Minion did not return. [No response]

[root@salt-master ~]# salt -N linuxlabs test.ping
pubbox44.example.com:
    True
pubbox10.example.com:
    True




添加“ -l调试”或“ -l跟踪”并没有真正揭示多少。实际上,在-l debug输出中,它表明嵌套的节点组已被解析为其正确的主机名。在“ -l trace”输出中,终端被无情地发送了相同的消息:

[root@salt-master ~]# salt -N linuxtest test.ping -l trace
[DEBUG   ] Reading configuration from /etc/salt/master
...
[DEBUG   ] nodegroup_comp(linuxlabs) => ['(', 'E@^pubbox', ')']
[DEBUG   ] nodegroup_comp(linuxtest) => ['(', '(', 'E@^pubbox', ')', ')']
...
[TRACE   ] get_event() received = {'tag': 'salt/job/20160609132845009910/new', 'data': {'tgt_type': 'compound', 'jid': '20160
609132845009910', 'tgt': ['(', '(', 'E@^pubbox', ')', ')'], '_stamp': '2016-06-09T17:28:45.011228', 'user': 'root', 'arg': []
, 'fun': 'test.ping', 'minions': ['pubbox10.example.com', 'pubbox44.example.com']}}
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
...


^^此消息重复了2000多次,最终在几秒钟后结束:

...
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
[TRACE   ] _get_event() waited 0 seconds and received nothing
[DEBUG   ] LazyLoaded no_return.output
[TRACE   ] data = {'pubbox10.example.com': 'Minion did not return. [No response]'}
pubbox10.example.com:
    Minion did not return. [No response]
[DEBUG   ] LazyLoaded no_return.output
[TRACE   ] data = {'pubbox44.example.com': 'Minion did not return. [No response]'}
pubbox44.example.com:
    Minion did not return. [No response]




我在嵌套节点组上尝试了一些变体。例如,我没有将父名称包含“ E @”前缀,而是将其更改为“ L @”,并明确列出了主机名。结果相同。



这是我的盐--versions-report:

[root@salt-master ~]# salt --versions-report
Salt Version:
           Salt: 2015.8.10

Dependency Versions:
         Jinja2: 2.8
       M2Crypto: 0.24.0
           Mako: Not Installed
         PyYAML: 3.11
          PyZMQ: 15.2.0
         Python: 2.7.11 (default, Mar 24 2016, 22:19:35)
           RAET: 0.6.5
        Tornado: 4.3
            ZMQ: 4.1.4
           cffi: 1.5.2
       cherrypy: 3.2.3
       dateutil: Not Installed
          gitdb: Not Installed
      gitpython: Not Installed
          ioflo: 1.5.1
        libgit2: Not Installed
        libnacl: 1.4.4
   msgpack-pure: Not Installed
 msgpack-python: 0.4.7
   mysql-python: Not Installed
      pycparser: 2.14
       pycrypto: 2.6.1
         pygit2: Not Installed
   python-gnupg: Not Installed
          smmap: Not Installed
        timelib: Not Installed

System Versions:
           dist:
        machine: i86pc
        release: 5.11




我偶然发现了一个错误吗?还是我错误配置了节点组?值得一试的是,我检查了此发行版和当前版本的Salt之间的发行说明,但没有找到解决嵌套节点组问题的任何信息。

最佳答案

这确实是一个错误。您介意在SaltStack的github问题跟踪器上打开问题吗?
http://github.com/saltstack/salt/issues/new

谢谢!

10-08 15:01