browsertrix/ansible/roles/microk8s/tasks/main.yml
Francis Kayiwa 487110eca3
Deployment: Add Ansible setup to deploy with microk8s (#296)
- adds an ansible/ directory for management deployments, starting with microk8s
- has a microk8s role
      we will need to add workers
- has a playbook with variables that can install most places
2022-08-19 12:49:21 -07:00

17 lines
376 B
YAML

---
# tasks file for microk8s
#
- import_tasks: install.yml
- name: microk8s | configure users
include_tasks: configure_groups.yml
when: users is defined
- name: microk8s | configure single node addons
include_tasks: addons.yml
when: not microk8s_enable_ha
- name: microk8s | configure High Availability
include_tasks: configure_ha.yml
when: microk8s_enable_ha