Re: [ansible-project] Ansible execution workflow

2017-02-10 Thread DanyC
Brian, the info is gold mine, where would you think it might fit in the docs? (i'd love to see this added and maybe extended. coming from Salt land this info does help big time) cheers On Friday, 10 February 2017 03:13:13 UTC, Brian Coca wrote: > > Nothing up 2 date, but here is a quick rund

Re: [ansible-project] Ansible execution workflow

2017-02-09 Thread Brian Coca
Nothing up 2 date, but here is a quick rundown: - read plays/roles - read inventory - start tasks execution - gather facts if set - execute rest of tasks - execute handlers if needed As for task execution (gather facts is just another task): - compile task, template and assign variables

[ansible-project] Ansible execution workflow

2016-08-09 Thread knowshan
I was wondering if there is any documentation available that describes how Ansible works or provides any architecture diagram. I am assuming general steps in Ansible execution are: * Establish SSH connection with a remote host * Copy Ansible modules, roles and playbooks to the remote host *