browsertrix/ansible/inventory/microk8s/group_vars/main.yml
Anish Lakhwara 834fa72baf
Refactor microk8s playbook to follow "new" structure (#1264)
* Refactor microk8s playbook to follow structure with shared roles

- Integrates with btrix/deploy role for deploying
- Seperated RedHat and Debian into seperate roles
- Created Common role

- allow running remotely by default
- use 'browsertrix_cloud_home' for charts path
- add additional customizable options to btrix_values.j2 (todo: unify all the templates)
- docs: update to new playbook path

---------
Co-authored-by: Ilya Kreymer <ikreymer@gmail.com>
2023-10-11 19:33:30 -07:00

39 lines
1.4 KiB
YAML

---
project_name: "default"
ansible_ssh_private_key_file: "~/.ssh/id_rsa"
microk8s_cache_valid_time: 3600
allow_world_readable_tmpfiles: true
domain: "{{ domain_name | default('browsertrix.cloud') }}"
## version management
microk8s_disable_snap_autoupdate: false
microk8s_registry_size: 20Gi
microk8s_dns_servers:
- 8.8.8.8
- 8.8.4.4
# Define which release is installed and tracked for updates.
microk8s_channel: stable
your_user: root # if your cloud provide uses another user change this
browsertrix_cloud_home: "/opt/browsertrix-cloud"
ansible_user_home: "/home/{{ ansible_user }}"
ansible_user: conan # change this to a different user if you don't want conan the deployer
microk8s_plugins:
dns: true # CoreDNS
ingress: true # Ingress controller for external access
helm3: true # Helm 3 - Kubernetes package manager
host-access: true # Allow Pods connecting to Host services smoothly
registry: true # Private image registry exposed on localhost:32000
storage: true # Storage class; allocates storage from host
cert-manager: true # Cert manager
# These options are only necessary for HTTPS
enable_signing: false # Change this if you want HTTPS
signing_domain: "mydomain.com" # Set to your domain for HTTPS
cert_email: "user@mydomain.com" # Email for CertBot
signing_authtoken: "{{ 99999999 | random | to_uuid }}"