[root@server ~]# vim /etc/ansible/hosts[root@server ~]# cat /etc/ansible/hosts192.168.80.100
192.168.80.101[dev]192.168.80.[102:109][test]1092.168.80.[110:120][prod]192.168.80.[111:130][Father:children]
dev
test
prod
[root@server ~]# vim /root/inv[web]
node1.example.com
node2.example.com
查看自定义主机清单
-i指定自定义的主机清单
[root@server ~]# ansible all -i /root/inv --list-hostshosts (2):node1.example.comnode2.example.com
[root@server ~]# ansible web -i /root/inv --list-hostshosts (2):node1.example.comnode2.example.com
5.有选择地查看主机和组
[root@server ~]# vim /etc/ansible/hosts192.168.48.254[web]192.168.48.[130:133][http]192.168.48.[134:135][ftp]192.168.48.[136:139][dns]192.168.48.[140:145][mail]192.168.48.[143:146]
查看全部主机
[root@server ~]# ansible all --list-hostshosts (18):192.168.48.254192.168.48.130192.168.48.131192.168.48.132192.168.48.133192.168.48.134192.168.48.135192.168.48.136192.168.48.137192.168.48.138192.168.48.139192.168.48.140192.168.48.141192.168.48.142192.168.48.143192.168.48.144192.168.48.145192.168.48.146
查看单个组
[root@server ~]# ansible dns --list-hostshosts (6):192.168.48.140192.168.48.141192.168.48.142192.168.48.143192.168.48.144192.168.48.145
中文版
“四大会计师事务所”(Big Four accounting firms)是全球最具影响力和规模最大的四家专业服务公司,它们在审计、税务、咨询和财务咨询等领域占据着主导地位。这四家公司分别是普华永道(PwC)、德勤(…
Pod 资源调度之亲和性调度 1.Node 亲和性调度1.1 Node 硬亲和性1.2 Node 软亲和性 2.Pod 亲和性调度2.1 Pod 硬亲和2.2 Pod 软亲和2.3 Pod 反亲和 Kubernetes 的 默认调度器 以 预选、优选、选定机制 完成将每个新的 Pod 资源绑定至为其选出的目标节点上,不过&#…