Size: 1616
Comment:
|
← Revision 9 as of 2021-06-24 18:44:34 ⇥
Size: 2028
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 45: | Line 45: |
== Disable SSH host key checking == Export `ANSIBLE_HOST_KEY_CHECKING` before running ansible: {{{#!highlight sh numbers=off ANSIBLE_HOST_KEY_CHECKING=False ansible -i inventory.yml all -m ping }}} or into ansible.cfg put: {{{ [defaults] host_key_checking = False }}} |
|
Line 53: | Line 68: |
ansible-playbook playbook.yml –start-at=”install packages” | ansible-playbook playbook.yml --start-at="install packages" |
Line 59: | Line 74: |
* [[https://linuxctl.com/2017/01/ansible---interacting-with-external-rest-api/|Ansible - Interacting with external REST APIs]] |
Installing ansible
# Official PPA for Ubuntu
sudo apt-add-repository -y ppa:ansible/ansible
sudo apt-get update
sudo apt-get install -y ansible
Playbooks meant to only be run locally
or specify hosts: all:
and then invoke ansible with:
ansible-playbook -i 'localhost,' -c local Playbook.ansible.yml
Disable SSH host key checking
Export ANSIBLE_HOST_KEY_CHECKING before running ansible:
ANSIBLE_HOST_KEY_CHECKING=False ansible -i inventory.yml all -m ping
or into ansible.cfg put:
[defaults] host_key_checking = False
Async/parallelizing tasks
See http://toroid.org/ansible-parallel-dispatch and https://docs.ansible.com/ansible/latest/user_guide/playbooks_async.html, and https://blog.crisp.se/2018/01/27/maxwenzin/how-to-run-ansible-tasks-in-parallel, needs more research.
Tips & tricks
Good articles