browsertrix/docs/deploy/ansible/microk8s.md
Henry Wilkinson 2952988864
docs: formatting fixes & minor content updates (#1091)
Additional tweaks on Browser Profiles pages + general consistency pass
2023-08-21 13:26:43 -07:00

1.5 KiB

Microk8s

Playbook Path: ansible/playbooks/install_microk8s.yml

This playbook provides an easy way to install Browsertrix Cloud on Ubuntu (tested on Jammy Jellyfish) and RedHat 9 (tested on Rocky Linux 9). It automatically sets up Browsertrix with Letsencrypt certificates.

Requirements

To run this ansible playbook, you need to:

  • Have a server / VPS where browsertrix will run.
  • Configure a DNS A Record to point at your server's IP address.
  • Make sure you can ssh to it, with a sudo user: ssh @
  • Install Ansible on your local machine (the control machine).

Install

  1. Clone the repo:
git clone https://github.com/webrecorder/browsertrix-cloud.git
cd browsertrix-cloud
  1. Look at the configuration options and modify them or pass them as extra variables as shown below.

  2. Add your IP address above to a new file called [inventory/hosts]

  3. Run the playbook:

ansible-playbook -i inventory/hosts playbooks/install_microk8s.yml -e host_ip="1.2.3.4" -e domain_name="yourdomain.com" -e your_user="your_vps_admin_user"

Upgrading

  1. Run git pull

  2. Run the playbook:

ansible-playbook -i inventory/hosts playbooks/install_microk8s.yml -e host_ip="1.2.3.4" -e domain_name="yourdomain.com" -t helm_upgrade