diff options
author | Quentin <quentin@dufour.io> | 2020-07-05 20:37:19 +0200 |
---|---|---|
committer | Quentin <quentin@dufour.io> | 2020-07-05 20:37:19 +0200 |
commit | 09878271f2a207ffb33c1f293dd26ee97cc6fff2 (patch) | |
tree | ee8d82b8640deed41acf13ab5cce94045ebc3081 /ansible/README.md | |
parent | f427bcf5645d92604be3994496bf44bd93f5c7e3 (diff) | |
parent | faf39bbb282542efa237c39f4371918589508254 (diff) | |
download | infrastructure-09878271f2a207ffb33c1f293dd26ee97cc6fff2.tar.gz infrastructure-09878271f2a207ffb33c1f293dd26ee97cc6fff2.zip |
Merge pull request 'Network configuration' (#1) from network_config into master
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/deuxfleurs.fr/pulls/1
Diffstat (limited to 'ansible/README.md')
-rw-r--r-- | ansible/README.md | 65 |
1 files changed, 14 insertions, 51 deletions
diff --git a/ansible/README.md b/ansible/README.md index 0d0c607..db8d960 100644 --- a/ansible/README.md +++ b/ansible/README.md @@ -1,52 +1,15 @@ - -## Provisionning - - 1. Need a public IP address - 2. Deploy Debian sid/buster - 3. Add a DNS entry like xxxx.machine.deuxfleurs.fr A 0.0.0.0 in Cloudflare + Havelock - 4. Setup the fqdn in /etc/hosts (127.0.1.1 xxxx.machine.deuxfleurs.fr) - 5. Switch the SSH port to the port 110 - 6. Add the server to the ./production file - 7. Reboot machine - 8. Deploy Ansible - 9. Check that everything works as intended - 10. Update NS 1.cluster.deuxfleurs.fr - -## Useful commands - -Show every variables collected by Ansible for a given host: - -``` -ansible -i production villequin.machine.deuxfleurs.fr -m setup -``` - -Run playbook for only one host: - -``` -ansible-playbook -i production --limit villequin.machine.deuxfleurs.fr site.yml -``` - -Dump hostvars: - -``` -ansible -m debug villequin.machine.deuxfleurs.fr -i ./production -a "var=hostvars" -``` - -Deploy only one tag: - -``` -ansible-playbook -i production site.yml --tags "container" -``` - -Redeploy everything: - -``` -ansible-playbook -i production site.yml -``` - -Upgrade packages and force overwirte to fix bad packing done by GlusterFS: - -``` -apt-get -o Dpkg::Options::="--force-overwrite" dist-upgrade -y -``` +# ANSIBLE + +## How to proceed + +For each machine, **one by one** do: + - Check that cluster is healthy + - `sudo gluster peer status` + - `sudo gluster volume status all` (check Online Col, only `Y` must appear) + - Check that Nomad is healthy + - Check that Consul is healthy + - Check that Postgres is healthy + - Run `ansible-playbook -i production --limit <machine> site.yml` + - Reboot + - Check that cluster is healthy |