Ansible Operations: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 26: | Line 26: | ||
{{Internal|ansible-playbook|ansible-playbook}} | {{Internal|ansible-playbook|ansible-playbook}} | ||
=Provide In-Line Prompt Confirmation= | |||
ansible-playbook ... -e reset_confirmation=yes |
Revision as of 22:21, 4 December 2019
Internal
Ping all Hosts from a Group
This will also list the hosts from that group.
ansible all -m ping
Execute a Shell Command on all Hosts in Some Groups
ansible masters,nodes -m shell -a "systemctl status docker | grep Active"
Copy Files
ansible <my-servers> -m copy -a "src=/root/ipa-ca.crt dest=/etc/origin/master"
ansible-playbook
Provide In-Line Prompt Confirmation
ansible-playbook ... -e reset_confirmation=yes