ansible_cache/home_linux/k8s_stuff/remove_microk8s.yml

19 lines
349 B
YAML
Raw Normal View History

---
- 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