ansible_cache/home_linux/k8s_stuff/remove_microk8s.yml
2024-12-27 12:47:45 +00:00

19 lines
349 B
YAML
Executable File

---
- name: Remove MicroK8s from Raspberries
hosts: kubernetes
roles:
- common
become: yes
gather_facts: no
tasks:
- name: Uninstall MicroK8s
community.general.snap:
name: microk8s
state: absent
register: result
- name: Display uninstall outcome
ansible.builtin.debug:
var: result.stdout_lines