Ansible Demo BarCamp 2020
Nota: Todas estás pruebas fueron ejecutadas en Debian versión 10 usando ansible 2.10.3
Nota: Ansible debe ser instalado solo en el servidor controlador.
# Instalar el manejador de paquetes de python
apt install python3-pip
# mediante pip instalamos ansible (Forma recomendada)
pip3 install ansible
Documentación oficial instalación Ansible
# verify if the hosts are reachable
ansible webservers -i hosts.yml -m ping
# get hosts facts
ansible webservers -i hosts.yml -m setup | less
ansible webservers -i hosts.yml -m setup -a "filter=ansible_distribution*"
- This code was use as a demostration on the BarCamp 2020 presented y @hectorvent
- Google slide document can be download here