- 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
17 lines
376 B
YAML
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
|