mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2024-11-05 21:33:30 +01:00
24 lines
925 B
YAML
24 lines
925 B
YAML
---
|
|
|
|
- import_tasks: build/preconfigure-k3s.yml
|
|
|
|
- import_tasks: teardown/drain-and-remove-nodes.yml
|
|
|
|
- import_tasks: teardown/uninstall-k3s.yml
|
|
|
|
- name: Ensure docker uninstall tasks are run
|
|
block:
|
|
|
|
- import_tasks: teardown/uninstall-docker.yml
|
|
when: ansible_distribution | replace(" ", "-") | lower not in ['amazon', 'suse', 'opensuse-leap', 'archlinux']
|
|
|
|
- include_tasks: teardown/uninstall-docker-{{ ansible_distribution | replace(" ", "-") | lower }}.yml
|
|
when: ansible_distribution | replace(" ", "-") | lower in ['amazon', 'suse', 'opensuse-leap', 'archlinux']
|
|
|
|
- include_tasks: teardown/uninstall-docker-prerequisites-{{ ansible_os_family | lower }}.yml
|
|
|
|
when: ('docker' in k3s_runtime_config and k3s_runtime_config.docker)
|
|
and ('rootless' not in k3s_runtime_config or not k3s_runtime_config.rootless)
|
|
|
|
- import_tasks: validate/check-uninstalled.yml
|
|
when: not k3s_skip_validation
|