mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 10:13:58 +00:00
14 lines
335 B
YAML
14 lines
335 B
YAML
---
|
|
- name: Cleanup / uninstall k3s (operator action)
|
|
# Intentionally broad targeting; use --limit to select the host(s) to clean.
|
|
hosts: all
|
|
gather_facts: false
|
|
become: true
|
|
serial: 1
|
|
|
|
tasks:
|
|
- name: Uninstall k3s and remove local state
|
|
ansible.builtin.import_role:
|
|
name: k3s
|
|
tasks_from: cleanup
|