conference-website/playbooks
2024-07-18 22:16:45 +02:00
..
common Replace poetry with requirements{,_dev,_prod}.txt 2024-07-01 20:28:10 +02:00
environments Deploy: Update playbook 2023-07-04 18:34:51 +02:00
tasks Playbooks: make sure collectstatic actually triggers restart 2024-07-18 22:16:45 +02:00
templates Replace poetry with requirements{,_dev,_prod}.txt 2024-07-01 20:28:10 +02:00
ansible.cfg Replace Docker deploy with playbooks 2022-05-27 16:43:15 +02:00
ansible.sh Use ansible-playbook from venv 2022-06-23 11:50:37 +02:00
configure_crontab.yaml Playbooks: remove dumpdata cron job 2023-12-15 08:05:51 +01:00
deploy.yaml Replace poetry with requirements{,_dev,_prod}.txt 2024-07-01 20:28:10 +02:00
enable_maintenance.yaml Playbook for installing a certificate in production 2022-05-24 10:51:05 +02:00
install.yaml Playbooks: ansible-lint 2024-01-12 13:25:59 +01:00
README.md Playbooks,docs: suggest using venv module directly 2024-05-13 15:04:54 +02:00
requirements.txt Add background tasks; ansible-lint 2022-06-02 12:58:27 +02:00
setup_certificate.yaml Deploy: add upstreaminfo log format to nginx 2023-10-05 17:14:48 +02:00
vars_common.yaml Replace poetry with requirements{,_dev,_prod}.txt 2024-07-01 20:28:10 +02:00

Ansible playbooks located in this directory are used by Blender Foundation staff to manage installation and continuous deployment of this project.

While the playbooks can be used as reference for another production or staging installation (e.g. you can find all the required packages in install.yaml, templates of web server configuration under templates/ and variables such as domain names or paths where back-end code is located in vars_common.yaml), they will not provide you with a working installation if you run them "as is".

It should be possible, however, to adjust the playbooks by copying a directory under environments/ and adjusting variables in that directory. Refer to Ansible documentation for details about inventory variables.

Deployment playbooks

The target system is assumed to be Ubuntu 20.04 LTS. The playbooks have not been tested with other distros or releases, and will most likely fail due to differences in configuration paths and so on.

To avoid adding more dependencies to the project itself, ansible uses its own virtualenv. To set it up use the following commands:

python3.10 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

First time install

First time installation requires a few additional variables (see the list in vars_common.yaml) that should be encrypted with Ansible Vault and stored in environments/<env>/group_vars/all/99_vault.yaml before install.yaml can be run.

./ansible.sh -i environments/production install.yaml --vault-id production@prompt
./ansible.sh -i environments/production setup_certificate.yaml

These vaulted variables shouldn't be required after the installation is complete and they are written to the environment files and webserver config at the target host, unless you need to rewrite those files for some reason.

Note that currently playbook install.yaml does not setup a production-ready settings.py. It must be created after at the following path:

/opt/blender-conference-<env>/conference/settings.py

Encrypting variables

Let's say one of the config templates used by install.yaml refers to a variable named sentry_dsn, and for production we want this variable to have the following value: https://foo@bar.example.com/1234. To encrypt this value, use the following command:

echo -n 'https://foo@bar.example.com/1234' | ansible-vault encrypt_string --vault-id production@prompt --stdin-name 'sentry_dsn'

Store the output of the above command in environments/production/group_vars/all/99_vault.yaml (not tracked by this repository):

# environments/production/group_vars/all/99_vault.yaml
...
sentry_dsn: !vault |
      $ANSIBLE_VAULT;1.2;AES256;production
      foo5643bbar56563663265653430636530deadbeef65353534643361616238346264343763356362
      ..
      6439356237386bar303062393861626639613531326363380a653266646534383831666364663964
...

Any playbook that uses this variable will need to be able to decrypt it, so use --vault-id production@prompt: this will make Ansible prompt for a Vault password.

If a playbook you are running and its templates don't use any encrypted variables, --vault-id parameter doesn't need to be added to the command.

Deploy

Except for error page templates, which are part of the playbooks, the playbooks do not deploy local uncommitted changes. When you need to deploy something, make sure to commit and push your changes both to main and production:

  1. commit and push your changes to main;
  2. push the same exact changes to production using the following:
git fetch origin main:production && git push origin production
  1. navigate to the playbooks and run deploy.yaml
./ansible.sh -i environments/production deploy.yaml