tableflip/post-infrastructure

Name: post-infrastructure

Owner: TABLEFLIP

Description: :love_letter: :floppy_disk: Ansible scripts for deploying post

Created: 2016-03-28 17:42:42.0

Updated: 2017-01-09 17:17:48.0

Pushed: 2017-09-25 15:31:03.0

Homepage:

Size: 55

Language: Nginx

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

POST infrastructure

Ansible scripts for deploying POST

Vagrantfile        # Test the scripts locally with `vagrant up`
group_vars         # Common variables and deploy secrets
dev                # Inventory of hosts used in local dev
production         # Inventory of LIVE hosts
roles              # Define the tasks that set up a given role.
bootstrap.yml      # Playbook for getting new vms up to spec.
deploy.yml         # Playbook for updating our app.

Ansible works by assigning roles to hosts.

Roles contain the tasks and and files to install and configure the services needed.

e.g: frontend clones our app code, installs npm deps, and configures nginx as a proxy.

Key to making it work is ensuring tasks are idempotent. We can run all the tasks at any time. Either the task changes the system as required, or has no effect if that change is already in place.

An inventory defines named groups of servers. We use playbooks to assign roles those groups. We have a playbook that bootstraps a brand new vm to be used by ansible, which we assume will be run once on against each machine.

ble-playbook -i production bootstrap.yml --extra-vars "ansible_user=root"

where

bootstrap.yml just steps up the ansible user and not much else.

sts: app
les:
- bootstrap

By assigning app hosts the role bootstrap, it's telling ansible to run the tasks defined in roles/boostrap/tasks/main.yml

me: Ensure base OS is up-to-date
come: yes
t: upgrade=dist update_cache=yes

me: Ensure ansible user exists
come: yes
er: name=ansible comment="Ansible" groups="ansible,sudo"

Once we have an ansible user, we can forget about about bootstrap, and get on with setting up our roles, as defined in deploy.yml

At the start of a project, it's normal to have all the roles on the same host; a single vm dealing with the frontend, api and db, as it's then much easier to roll out additional VMs for staging and test.

When we need to scale the infrastructure we can add additional hosts to an inventory, to scale a roll horizontally across many identically configured servers, and we can split roles our to separate hosts, to create optimised VMs with a single purpose; e.g. a separate db server.

Prerequisites

You will need some secrets. A secrets.yaml file to be precise, from the tableflip vault. Drop it into the group_vars/all/ dir, and your good to go.

Usage

To bootstrap a local test server with vagrant

wnload and provision a vm
ant up

date app vm
ble-playbook -i dev deploy.yml

You now have the app & ops vm, running locally

To bootstrap a new production vm

otstrap ansible user
ble-playbook -i production bootstrap.yml --extra-vars "ansible_user=root"

tall app and dependencies
ble-playbook -i production deploy.yml

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.