browsertrix/ansible/roles/microk8s/common/templates/btrix_values.j2
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

31 lines
803 B
Django/Jinja

default_org: {{ browsertrix_default_org | default('My Organization') }}
crawler_extra_args: "{{ crawler_extra_args | default('') }}"
superuser:
email: {{ browsertrix_superuser_email | default('admin@example.com') }}
password: {{ browsertrix_superuser_password | default('PASSW0RD!') }}
mongo_auth:
username: {{ browsertrix_mongo_username | default('root') }}
password: {{ browsertrix_mongo_password | default('PASSWORD!') }}
ingress:
host: "{{ domain }}"
cert_email: "{{ cert_email }}"
tls: true
# optional second-host for signing archives
{% if signing_domain %}
signer:
enabled: true
host: {{ signing_domain }}
cert_email: {{ cert_email }}
image_pull_policy: "IfNotPresent"
auth_token: {{ signing_authtoken }}
{% endif %}
# required for microk8s
ingress_class: "public"