首先在 minion 上编辑 grains 配置文件,然后添加自定义的 grains:
[[email protected] ~]$ cat /etc/salt/grains # 这个文件默认是没有的 role: nginx
[[email protected] ~]$ systemctl restart salt-minion # 重启客户端
然后在 master 上就可以根据 grains 信息进行操作:
[[email protected] ~]$ salt ‘192.168.119.140‘ grains.item role 192.168.119.140: ---------- role: nginx
[[email protected] ~]$ salt -G role:nginx cmd.run ‘hostname‘ 192.168.119.140: localhost.localdomain
原文地址:https://www.cnblogs.com/pzk7788/p/10271826.html
时间: 2024-10-19 02:03:00