You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ansible-with-Vagrant/README.md

34 lines
705 B

2 years ago
# ANSIBLE & VAGRANT
2 years ago
## PRINCIPE
Ansible est un outils de configuration de machines.
2 years ago
Vagrant sert à tester les playbooks via des VMs
2 years ago
## INSTALLATION
```bash
python3 -m pip install --user ansible
python3 -m pip install --user ansible-core
#python3 -m pip install --user ansible-core==2.13.3 # (pour choisir une version spécifique)
```
## USAGE
- Seul:
```bash
ansible -i inventory playbook.yml
```
- Avec Vagrant:
```bash
2 years ago
# juste pour lancer le playbook (nécessite une VM déjà crée)
2 years ago
vagrant provision
2 years ago
# demarrer la construction de la VM + Ansible playbook configuré dans la Vagrantfile
vagrant up
# stopper la VM
vagrant halt
# détruire la VM
vagrant destroy
2 years ago
```
> Nécessite une Vagrantfile!