ansible/README.txt

61 lines
1.7 KiB
Plaintext
Raw Permalink Normal View History

2016-02-04 14:15:33 +01:00
Installation Ansible
====================
$ sudo apt-get install software-properties-common
$ sudo apt-add-repository ppa:ansible/ansible
$ sudo apt-get update
$ sudo apt-get install ansible
In /etc/ansible/ansible.cfg
[defaults]
host_key_checking = false
2016-02-04 14:17:45 +01:00
Préparation des serveurs
2016-02-04 14:15:33 +01:00
========================
2016-02-04 14:17:45 +01:00
Installation des éléments de base
2016-02-04 14:15:33 +01:00
@todo
- ntp
- fail2ban
- apache
- php
- mariadb
Installation Ansistrano
=======================
$ ansible-galaxy install carlosbuenosvinos.ansistrano-deploy carlosbuenosvinos.ansistrano-rollback
Update
If you want to update the role, you need to pass --force parameter when installing. Please, check the following command:
$ ansible-galaxy install --force carlosbuenosvinos.ansistrano-deploy carlosbuenosvinos.ansistrano-rollback
Utilisation
===========
2017-02-20 14:00:18 +01:00
Installer le projet "ansible" depuis git dans le repertoire home de l'utilisateur "deploy"
2016-02-04 14:15:33 +01:00
2016-02-04 14:17:45 +01:00
Créer la clé publique pour l'utilisateur "deploy"
2016-02-04 14:15:33 +01:00
$ ssh-keygen -t rsa
$ cp -v ~/.ssh/id_rsa.pub ~/ansible/files/authorized_keys.deploy.pub
2017-02-20 14:00:18 +01:00
Sur chaque serveur préparer l'utilisateur et le vhost
2016-02-09 14:57:02 +01:00
$ ansible-playbook -i {inventory} base/user-deploy.yml --become -k --ask-become-pass --user={first user create on install}
2016-02-04 15:03:20 +01:00
Vérification du vhosts pour les projets web
2016-05-12 11:21:57 +02:00
$ ansible-playbook -i {inventory} base/vhosts.yml
Filtrer pour executer sur un seul host
$ ansible-playbook -i {inventory} -l 192.168.0.0 playbook.yml
2016-02-04 14:15:33 +01:00
Gestion d'un projet
-----------------------
2016-02-04 15:03:20 +01:00
2016-02-04 14:17:45 +01:00
Récupération de la branch "master" du projet dans /home/vhosts/deploy/export
2016-02-04 14:15:33 +01:00
Deploying
$ ansible-playbook -i hosts -e "ansistrano_release_version=`date -u +%Y%m%d%H%M%SZ`" deploy.yml
Rolling back
$ ansible-playbook -i hosts rollback.yml