123456789101112131415161718192021222324252627282930 |
- ---
- - name: Scuttle Kubernetes cluster
- hosts: all
- tasks:
- - name: Reset kubeadm
- command: kubeadm reset -f
- - name: Remove configuration directories
- file:
- path: "{{ item }}"
- state: absent
- with_items:
- - /var/lib/etcd/
- - /var/lib/cni/
- - /run/flannel/
- - /etc/cni/
|