tips:ansible

This is an old revision of the document!


ansible

ansible all --list-hosts
 
ansible all -m ping
helloworld.yaml
- name: helloworld
  hosts: nodes
  tasks:
   - name: Ping my hosts
     ansible.builtin.ping:
   - name: Print message
     ansible.builtin.debug:
       msg: Hello world
 
</code>

<code>
ansible-playbook helloworld.yaml
</code>

 
===== install =====
 
<code bash>
python3 -m pip install --user ansible
</code>

===== config =====
 
<file ini /etc/ansible/hosts>
[nodes]
10.45.0.1
10.45.0.2
10.45.0.3
10.45.0.4
10.45.0.5
  • tips/ansible.1662709931.txt.gz
  • Last modified: 2022/09/09 09:52
  • by sscipioni