ara/roles/ara_web
Jeffrey van Pelt 2e367aff9e
Updated docs, updated vars files for ara_web and ara_frontend_nginx to support Debian 10
Change-Id: I39827c0113a4b4fd5e74e06df60cd9145352fc95
2020-05-08 12:03:39 +02:00
..
defaults OpenDev Migration Patch 2019-04-19 19:49:48 +00:00
handlers Import role for deploying ara-web 2019-03-08 17:16:39 -05:00
meta Import role for deploying ara-web 2019-03-08 17:16:39 -05:00
tasks Import role for deploying ara-web 2019-03-08 17:16:39 -05:00
templates Import role for deploying ara-web 2019-03-08 17:16:39 -05:00
README.rst Updated docs, updated vars files for ara_web and ara_frontend_nginx to support Debian 10 2020-05-08 12:03:39 +02:00

README.rst

ansible-role-ara-web

image

This Ansible role provides a framework for installing one or many instances of ara-web in a variety of opinionated deployment topologies.

It is currently tested and supported against Ubuntu 18.04 and Fedora 29.

Role Variables

See defaults/main.yaml.

../../roles/ara_web/defaults/main.yaml

TL;DR

This is what the role does by default out of the box:

  • Retrieves ara-web from source
  • Installs nodejs LTS (v10)
  • Installs ara-web dependencies with npm
  • Configures an ara-server API endpoint in ara-web's public/config.json file
  • Sets up a systemd unit file for running ara-web with the embedded development server

About deployment topologies

This Ansible role is designed to support different opinionated topologies that can be selected with role variables.

For example, the following role variables are defaults used to provide the topology from the TL;DR above:

  • ara_web_install_method: source
  • ara_web_dev_server: true
  • ara_web_frontend_server: null

The intent is that as the role gains support for other install methods or frontend servers, it will be possible to mix and match according to preference or requirements.

Example playbooks

Deploy the ARA API and web client on the same machine with defaults:

- name: Deploy ARA API and web client
  hosts: all
  gather_facts: yes
  vars:
    # ara_api
    ara_api_fqdn: api.ara.example.org
    ara_api_wsgi_server: gunicorn
    ara_api_allowed_hosts:
    - api.ara.example.org
    ara_api_cors_origin_whitelist:
    - "http://web.ara.example.org"
    # ara_web
    ara_web_fqdn: web.ara.example.org
    ara_web_frontend_server: nginx
    ara_web_api_endpoint: "http://api.ara.example.org"
roles:
    - ara_api
    - ara_web

Deploy only ara-web behind nginx and point it to a remote API endpoint:

# Note: Don't forget to add the web fqdn in the remote cors_origin_whitelist.
# Otherwise, the web client might not be authorized to query the API.
- name: Deploy ara-web for remote API endpoint
  hosts: all
  gather_facts: yes
  vars:
    ara_web_fqdn: web.ara.example.org
    ara_web_api_endpoint: "http://api.remoteara.example.org"
    ara_web_frontend_server: nginx
    ara_web_frontend_vhost: custom-web-vhost.conf.j2
roles:
    - ara_web

Copyright

Copyright (c) 2019 Red Hat, Inc.

ARA Records Ansible is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

ARA Records Ansible is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with ARA Records Ansible. If not, see <http://www.gnu.org/licenses/>.