2014-04-11 22:34:33 +08:00
---
# This playbook purges Ceph
# It removes: packages, configuration files and ALL THE DATA
2016-03-24 19:28:01 +08:00
#
# Use it like this:
# ansible-playbook purge-cluster.yml
# Prompts for confirmation to purge, defaults to no and
# doesn't purge the cluster. yes purges the cluster.
#
# ansible-playbook -e ireallymeanit=yes|no purge-cluster.yml
# Overrides the prompt using -e option. Can be used in
# automation scripts to avoid interactive prompt.
- name : confirm whether user really meant to purge the cluster
hosts : localhost
vars_prompt :
- name : ireallymeanit
prompt : Are you sure you want to purge the cluster?
default : 'no'
private : no
tasks :
2016-03-29 21:37:31 +08:00
- name : exit playbook, if user did not mean to purge cluster
2016-03-24 19:28:01 +08:00
fail :
msg : >
"Exiting purge-cluster playbook, cluster was NOT purged.
To purge the cluster, either say 'yes' on the prompt or
or use `-e ireallymeanit=yes` on the command line when
invoking the playbook"
when : ireallymeanit != 'yes'
2014-04-11 22:34:33 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph cluster
hosts :
- mons
- osds
- mdss
2016-02-28 19:53:31 +08:00
- rgws
2016-02-10 20:13:39 +08:00
become : yes
vars :
2016-03-23 01:29:00 +08:00
osd_group_name : osds
mon_group_name : mons
rgw_group_name : rgws
mds_group_name : mdss
2016-04-04 06:35:09 +08:00
rbdmirror_group_name : rbdmirrors
2016-03-23 01:29:00 +08:00
2016-02-10 20:13:39 +08:00
# When set to true both groups of packages are purged.
2016-02-15 23:01:00 +08:00
# This can cause problem with qemu-kvm
2016-02-10 20:13:39 +08:00
purge_all_packages : true
2016-04-07 03:58:17 +08:00
# When set to true and raw _multi_journal is used then block devices are also zapped
zap_block_devs : true
2016-02-29 20:19:56 +08:00
2016-02-10 20:13:39 +08:00
ceph_packages :
- ceph
- ceph-common
- ceph-fs-common
- ceph-fuse
- ceph-mds
- ceph-release
2016-02-28 19:53:31 +08:00
- ceph-radosgw
2016-02-10 20:13:39 +08:00
ceph_remaining_packages :
- libcephfs1
- librados2
- libradosstriper1
- librbd1
- python-cephfs
- python-rados
- python-rbd
2016-03-29 21:37:31 +08:00
cluster : ceph # name of the cluster
monitor_name : "{{ ansible_hostname }}"
mds_name : "{{ ansible_hostname }}"
2014-04-11 22:34:33 +08:00
2016-03-23 01:29:00 +08:00
handlers :
- name : restart machine
shell : sleep 2 && shutdown -r now "Ansible updates triggered"
async : 1
poll : 0
ignore_errors : true
- name : wait for server to boot
local_action : wait_for port=22 host={{ inventory_hostname }} state=started delay=10 timeout=400
- name : remove data
file :
path : /var/lib/ceph
state : absent
2015-10-21 06:32:42 +08:00
tasks :
2016-03-24 18:38:56 +08:00
- name : check for a device list
fail :
msg : "OSD automatic discovery was detected, purge cluster does not support this scenario. If you want to purge the cluster, manually provide the list of devices in group_vars/osds using the devices variable."
when :
2016-04-12 21:49:44 +08:00
osd_group_name in group_names and
2016-03-24 18:38:56 +08:00
devices is not defined and
osd_auto_discovery
2016-02-10 20:13:39 +08:00
- name : get osd numbers
2016-03-13 21:26:34 +08:00
shell : "if [ -d /var/lib/ceph/osd ] ; then ls /var/lib/ceph/osd | cut -d '-' -f 2 ; fi"
2016-02-10 20:13:39 +08:00
register : osd_ids
changed_when : false
2015-10-21 06:32:42 +08:00
2016-03-23 01:29:00 +08:00
- name : are we using systemd
shell : "if [ -d /usr/lib/systemd ] ; then find /usr/lib/systemd/system -name 'ceph*' | wc -l ; else echo 0 ; fi"
register : systemd_unit_files
2016-04-07 03:58:17 +08:00
# after Hammer release
2016-02-10 20:13:39 +08:00
- name : stop ceph.target with systemd
service :
name : ceph.target
state : stopped
enabled : no
when :
2016-02-15 23:51:16 +08:00
ansible_os_family == 'RedHat' and
2016-03-23 01:29:00 +08:00
systemd_unit_files.stdout != "0"
2015-10-21 06:32:42 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph-osd with systemd
service :
name : ceph-osd@{{item}}
state : stopped
enabled : no
with_items : "{{ osd_ids.stdout_lines }}"
when :
2016-02-15 23:51:16 +08:00
ansible_os_family == 'RedHat' and
2016-03-23 01:29:00 +08:00
systemd_unit_files.stdout != "0" and
2016-02-10 20:13:39 +08:00
osd_group_name in group_names
2015-10-21 06:32:42 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph mons with systemd
2016-03-24 18:37:35 +08:00
service :
name : ceph-mon@{{ ansible_hostname }}
2016-02-10 20:13:39 +08:00
state : stopped
enabled : no
when :
2016-02-15 23:51:16 +08:00
ansible_os_family == 'RedHat' and
2016-03-23 01:29:00 +08:00
systemd_unit_files.stdout != "0" and
mon_group_name in group_names
2015-10-21 06:32:42 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph mdss with systemd
2016-03-24 18:37:35 +08:00
service :
name : ceph-mds@{{ ansible_hostname }}
2016-02-10 20:13:39 +08:00
state : stopped
when :
2016-02-15 23:51:16 +08:00
ansible_os_family == 'RedHat' and
2016-03-23 01:29:00 +08:00
systemd_unit_files.stdout != "0" and
mds_group_name in group_names
2015-10-21 06:32:42 +08:00
2016-03-29 07:53:01 +08:00
- name : stop ceph rgws with systemd
service :
name : ceph-radosgw@rgw.{{ ansible_hostname }}
state : stopped
when :
ansible_os_family == 'RedHat' and
systemd_unit_files.stdout != "0" and
rgw_group_name in group_names
2016-04-04 06:35:09 +08:00
- name : stop ceph rbd mirror with systemd
service :
name : ceph-rbd-mirror@admin.service
state : stopped
when :
ansible_os_family == 'RedHat' and
systemd_unit_files.stdout != "0" and
rbdmirror_group_name in group_names
2016-04-07 03:58:17 +08:00
# before infernalis release, using sysvinit scripts
# we use this test so we do not have to know which RPM contains the boot script
# or where it is placed.
2016-02-10 20:13:39 +08:00
- name : stop ceph osds
2016-04-07 03:58:17 +08:00
shell : "service ceph status osd ; if [ $? == 0 ] ; then service ceph stop osd ; else echo ; fi"
2016-02-10 20:13:39 +08:00
when :
2016-02-15 23:51:16 +08:00
ansible_os_family == 'RedHat' and
2016-04-07 03:58:17 +08:00
osd_group_name in group_names
2014-08-14 20:08:52 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph mons
2016-04-07 03:58:17 +08:00
shell : "service ceph status mon ; if [ $? == 0 ] ; then service ceph stop mon ; else echo ; fi"
2016-02-10 20:13:39 +08:00
when :
2016-02-15 23:51:16 +08:00
ansible_os_family == 'RedHat' and
2016-04-07 03:58:17 +08:00
mon_group_name in group_names
2014-04-11 22:34:33 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph mdss
2016-04-07 03:58:17 +08:00
shell : "service ceph status mds ; if [ $? == 0 ] ; then service ceph stop mds ; else echo ; fi"
2016-02-10 20:13:39 +08:00
when :
2016-02-15 23:51:16 +08:00
ansible_os_family == 'RedHat' and
2016-04-07 03:58:17 +08:00
mds_group_name in group_names
2016-02-10 20:13:39 +08:00
2016-03-29 07:53:01 +08:00
- name : stop ceph rgws
2016-04-07 03:58:17 +08:00
shell : "service ceph-radosgw status ; if [ $? == 0 ] ; then service ceph-radosgw stop ; else echo ; fi"
2016-03-29 07:53:01 +08:00
when :
ansible_os_family == 'RedHat' and
2016-04-07 03:58:17 +08:00
rgw_group_name in group_names
2016-03-29 07:53:01 +08:00
2016-02-10 20:13:39 +08:00
# Ubuntu 14.04
- name : stop ceph osds on ubuntu
2016-03-29 21:37:31 +08:00
shell : |
for id in $(ls /var/lib/ceph/osd/ |grep -oh '[0-9]*'); do
initctl stop ceph-osd cluster={{ cluster }} id=$id
done
2015-07-29 00:21:15 +08:00
failed_when : false
2016-02-10 20:13:39 +08:00
when :
ansible_distribution == 'Ubuntu' and
osd_group_name in group_names
2016-03-24 18:37:35 +08:00
with_items : "{{ osd_ids.stdout_lines }}"
2015-07-08 16:34:16 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph mons on ubuntu
2016-03-29 21:37:31 +08:00
command : initctl stop ceph-mon cluster={{ cluster }} id={{ monitor_name }}
2016-02-10 20:13:39 +08:00
failed_when : false
when :
ansible_distribution == 'Ubuntu' and
mon_group_name in group_names
2016-03-24 18:37:35 +08:00
2016-02-10 20:13:39 +08:00
- name : stop ceph mdss on ubuntu
2016-03-29 21:37:31 +08:00
command : initctl stop ceph-mds cluster={{ cluster }} id={{ mds_name }}
2015-07-29 00:21:15 +08:00
failed_when : false
2016-02-10 20:13:39 +08:00
when :
ansible_distribution == 'Ubuntu' and
mds_group_name in group_names
2016-03-29 07:53:01 +08:00
- name : stop ceph rgws on ubuntu
2016-03-29 21:37:31 +08:00
command : initctl stop radosgw cluster={{ cluster }} id={{ ansible_hostname }}
2016-03-29 07:53:01 +08:00
failed_when : false
when :
ansible_distribution == 'Ubuntu' and
rgw_group_name in group_names
2016-04-04 06:35:09 +08:00
- name : stop ceph rbd mirror on ubuntu
command : initctl stop ceph-rbd-mirorr cluster={{ cluster }} id=admin
failed_when : false
when :
ansible_distribution == 'Ubuntu' and
rbdmirror_group_name in group_names
2016-03-23 01:29:00 +08:00
- name : check for anything running ceph
shell : "ps awux | grep -v grep | grep -q -- ceph-"
register : check_for_running_ceph
failed_when : check_for_running_ceph.rc == 0
2016-04-07 03:58:17 +08:00
- name : see if ceph-disk-created data partitions are present
2016-04-12 04:53:45 +08:00
shell : "ls /dev/disk/by-partlabel | grep -q 'ceph\\\\x20data'"
2016-04-07 03:58:17 +08:00
failed_when : false
register : ceph_data_partlabels
- name : see if ceph-disk-created journal partitions are present
2016-04-12 04:53:45 +08:00
shell : "ls /dev/disk/by-partlabel | grep -q 'ceph\\\\x20journal'"
2016-04-07 03:58:17 +08:00
failed_when : false
register : ceph_journal_partlabels
2016-02-10 20:13:39 +08:00
- name : get osd data mount points
2016-03-23 01:29:00 +08:00
shell : "(grep /var/lib/ceph/osd /proc/mounts || echo -n) | awk '{ print $2 }'"
2016-02-10 20:13:39 +08:00
register : mounted_osd
changed_when : false
2016-03-23 01:29:00 +08:00
- name : drop all cache
shell : "sync && sleep 1 && echo 3 > /proc/sys/vm/drop_caches"
2016-02-10 20:13:39 +08:00
when :
2016-03-23 01:29:00 +08:00
osd_group_name in group_names
2016-02-10 20:13:39 +08:00
- name : umount osd data partition
2016-03-23 01:29:00 +08:00
shell : umount {{ item }}
2016-02-10 20:13:39 +08:00
with_items :
- "{{ mounted_osd.stdout_lines }}"
when :
osd_group_name in group_names
2016-03-23 01:29:00 +08:00
- name : remove osd mountpoint tree
shell : rm -rf /var/lib/ceph/osd
register : remove_osd_mountpoints
failed_when : false
when :
osd_group_name in group_names
2016-03-24 20:49:26 +08:00
- name : remove monitor store and bootstrap keys
shell : rm -rf /var/lib/ceph/
failed_when : false
when :
mon_group_name in group_names
2016-03-23 01:29:00 +08:00
- name : is reboot needed
local_action : shell echo requesting reboot
notify :
- restart machine
- wait for server to boot
- remove data
2016-03-24 20:49:26 +08:00
when :
osd_group_name in group_names and
2016-03-23 01:29:00 +08:00
remove_osd_mountpoints.rc != 0
2016-04-07 03:58:17 +08:00
- name : see if ceph-disk is installed
shell : "which ceph-disk"
failed_when : false
register : ceph_disk_present
2016-02-10 20:13:39 +08:00
- name : zap osd disks
shell : ceph-disk zap "{{ item }}"
with_items : devices
when :
2016-04-07 03:58:17 +08:00
osd_group_name in group_names and
ceph_disk_present.rc == 0 and
ceph_data_partlabels.rc == 0 and
zap_block_devs
2016-02-10 20:13:39 +08:00
2016-02-29 20:19:56 +08:00
- name : zap journal devices
shell : ceph-disk zap "{{ item }}"
with_items : "{{ raw_journal_devices|default([])|unique }}"
when :
osd_group_name in group_names and
2016-04-07 03:58:17 +08:00
ceph_disk_present.rc == 0 and
ceph_journal_partlabels.rc == 0 and
zap_block_devs and
raw_multi_journal
2016-02-29 20:19:56 +08:00
2016-02-15 23:01:00 +08:00
- name : purge ceph packages with yum
yum :
2016-02-10 20:13:39 +08:00
name : "{{ item }}"
state : absent
with_items :
- "{{ ceph_packages }}"
2016-02-15 23:01:00 +08:00
when :
2016-02-15 23:51:16 +08:00
ansible_pkg_mgr == 'yum'
- name : purge ceph packages with dnf
dnf :
name : "{{ item }}"
state : absent
with_items :
- "{{ ceph_packages }}"
when :
ansible_pkg_mgr == 'dnf'
2016-02-10 20:13:39 +08:00
2016-02-15 23:01:00 +08:00
- name : purge ceph packages with apt
apt :
name : "{{ item }}"
state : absent
with_items :
- "{{ ceph_packages }}"
when :
2016-02-15 23:51:16 +08:00
ansible_pkg_mgr == 'apt'
2016-02-15 23:01:00 +08:00
- name : purge remaining ceph packages with yum
yum :
2016-02-10 20:13:39 +08:00
name : "{{ item }}"
state : absent
with_items :
- "{{ ceph_remaining_packages }}"
when :
2016-02-15 23:51:16 +08:00
ansible_pkg_mgr == 'yum' and
purge_all_packages == true
- name : purge remaining ceph packages with dnf
dnf :
name : "{{ item }}"
state : absent
with_items :
- "{{ ceph_remaining_packages }}"
when :
ansible_pkg_mgr == 'dnf' and
2016-02-15 23:01:00 +08:00
purge_all_packages == true
- name : purge remaining ceph packages with apt
apt :
name : "{{ item }}"
state : absent
with_items :
- "{{ ceph_remaining_packages }}"
when :
2016-02-15 23:51:16 +08:00
ansible_pkg_mgr == 'apt' and
2016-02-10 20:13:39 +08:00
purge_all_packages == true
- name : remove config
file :
path : /etc/ceph
state : absent
- name : remove logs
file :
path : /var/log/ceph
state : absent
2016-03-23 01:29:00 +08:00
- name : remove from SysV
2016-02-10 20:13:39 +08:00
shell : "update-rc.d -f ceph remove"
when :
ansible_distribution == 'Ubuntu'
- name : remove Upstart nad SysV files
2016-02-16 20:41:58 +08:00
shell : "find /etc -name '*ceph*' -delete"
2016-02-10 20:13:39 +08:00
when :
ansible_distribution == 'Ubuntu'
2015-07-08 16:34:16 +08:00
2016-02-10 20:13:39 +08:00
- name : remove Upstart and apt logs and cache
2016-02-16 20:41:58 +08:00
shell : "find /var -name '*ceph*' -delete"
2016-02-10 20:13:39 +08:00
when :
2016-02-16 20:41:58 +08:00
ansible_distribution == 'Ubuntu'
2016-03-23 01:29:00 +08:00
- name : request data removal
local_action : shell echo requesting data removal
notify :
- remove data
2016-03-29 07:53:01 +08:00
- name : purge yum cache
command : yum clean all
when :
ansible_pkg_mgr == 'yum'
- name : purge dnf cache
command : dnf clean all
when :
ansible_pkg_mgr == 'dnf'
2016-04-27 01:01:01 +08:00
- name : purge RPM cache in /tmp
2016-04-28 01:36:32 +08:00
file :
path : /tmp/rh-storage-repo
state : absent
2016-04-27 01:01:01 +08:00
2016-03-29 07:53:01 +08:00
- name : clean apt
shell : apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
when :
ansible_pkg_mgr == 'apt'