extensions-website/playbooks
2024-02-27 19:21:21 +01:00
..
common Deploy: add upstreaminfo log format to nginx 2023-10-05 17:52:56 +02:00
environments Playbooks and settings: override STATIC_ROOT 2022-11-10 15:21:47 +01:00
tasks Playbooks: git submodule update as well 2024-02-27 19:21:21 +01:00
templates Infra: Run write_stats every minute 2024-02-22 21:47:23 +01:00
ansible.cfg Initial models, tests and other boilerplate 2022-08-25 17:37:48 +02:00
ansible.sh Initial models, tests and other boilerplate 2022-08-25 17:37:48 +02:00
deploy.yaml Playbooks: add confirmation to deploy and install playbooks 2022-11-10 16:36:18 +01:00
enable_maintenance.yaml Initial models, tests and other boilerplate 2022-08-25 17:37:48 +02:00
install.yaml Playbooks: replace virtualenv with venv; make Python version 3.10 explicit 2024-01-08 18:04:35 +01:00
README.md Playbooks: simplify production push command 2024-01-08 14:26:09 +01:00
requirements.txt Initial models, tests and other boilerplate 2022-08-25 17:37:48 +02:00
setup_certificate.yaml Deploy: add upstreaminfo log format to nginx 2023-10-05 17:52:56 +02:00
vars_common.yaml Playbooks: replace virtualenv with venv; make Python version 3.10 explicit 2024-01-08 18:04:35 +01: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 either Ubuntu 20.04 LTS or Ubuntu 22.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:

virtualenv .venv -p python
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.

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 ouput 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