mirror of https://github.com/easzlab/kubeasz.git
17 lines
384 B
YAML
17 lines
384 B
YAML
# to clean 'etcd' nodes
|
|
- block:
|
|
- name: stop and disable etcd service
|
|
service:
|
|
name: etcd
|
|
state: stopped
|
|
enabled: no
|
|
ignore_errors: true
|
|
|
|
- name: remove files and dirs
|
|
file: name={{ item }} state=absent
|
|
with_items:
|
|
- "/var/lib/etcd"
|
|
- "/backup/k8s"
|
|
- "/etc/systemd/system/etcd.service"
|
|
when: "inventory_hostname in groups['etcd']"
|