Ansible随记

来自三线的随记
Admin讨论 | 贡献2020年3月29日 (日) 15:56的版本 (创建页面,内容为“For linux <br /> === hosts === [k8s] k8s-node-1 ansible_ssh_host=172.16.139.102 k8s-node-2 ansible_ssh_host=172.16.139.103 k8s-node-3 ansible_ssh_host=172.16.1…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

For linux


hosts

[k8s]
k8s-node-1 ansible_ssh_host=172.16.139.102
k8s-node-2 ansible_ssh_host=172.16.139.103
k8s-node-3 ansible_ssh_host=172.16.139.104

[test]
192.168.1.250 ansible_ssh_port=1234
192.168.1.251 ansible_ssh_user=xxx ansible_ssh_pass=yyy


module

selinux

ansible k8s -m selinux -m selinux -a state=disabled

https://my.oschina.net/ozakilsc/blog/693023

shell

ansible k8s -m shell -a getenforce

ansible k8s -m shell -a hostname

ping

(用于判断远程客户端是否在线)

ansible k8s -m ping

command

(ansible default module)