昨天拉风在群里问, 定义了A, B两个nodegroup, 是否可以定义一个nodegroup C, 包含A, B两个group, 实现nodegroup嵌套nodegroup进而实现复杂nodegroup(哈哈,各种绕口)
由于手册中并没有相关介绍, 就查询了下官方的issue, 找到了之前有人反馈过的 issue #2020 , tom说0.10.4已经实现了这个功能, 就在测试环境进行了测试:
/etc/salt/master.d/nodegroups.conf
nodegroups: test1: '*WEB-01*' test2: '*DB*' test: N@test1,N@test2
测试:
salt -N test test.ping
输出结果:
LG-ICS3-DB-02-005: True LG-ICS3-WEB-01-002: True LG-ICS3-WEB-01-012: True
从输出来看, nodegroup嵌套是支持的
转载请注明:爱开源 » Salt nodegroup 嵌套 nodegroup