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
2016-10-06 12:32:38 +08:00
gather_facts : false
2016-03-24 19:28:01 +08:00
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
2017-02-08 01:57:38 +08:00
- name : gather facts on all hosts
2016-02-10 20:13:39 +08:00
2016-10-06 12:32:38 +08:00
hosts :
2017-03-08 00:16:09 +08:00
- "{{ mon_group_name|default('mons') }}"
- "{{ osd_group_name|default('osds') }}"
- "{{ mds_group_name|default('mdss') }}"
- "{{ rgw_group_name|default('rgws') }}"
- "{{ rbdmirror_group_name|default('rbdmirrors') }}"
- "{{ nfs_group_name|default('nfss') }}"
- "{{ client_group_name|default('clients') }}"
2016-02-10 20:13:39 +08:00
2016-10-06 12:32:38 +08:00
become : true
2016-02-29 20:19:56 +08:00
2016-10-06 12:32:38 +08:00
tasks :
2017-02-08 01:57:38 +08:00
- debug : msg="gather facts on all Ceph hosts for following reference"
2016-02-10 20:13:39 +08:00
2016-10-06 12:32:38 +08:00
- name : purge ceph mds cluster
2016-03-29 21:37:31 +08:00
2016-10-06 12:32:38 +08:00
vars :
mds_group_name : mdss
2014-04-11 22:34:33 +08:00
2016-10-06 12:32:38 +08:00
hosts :
2017-03-08 00:16:09 +08:00
- "{{ mds_group_name|default('mdss') }}"
2016-03-23 01:29:00 +08:00
2016-10-06 12:32:38 +08:00
gather_facts : false # Already gathered previously
2016-03-23 01:29:00 +08:00
2016-10-06 12:32:38 +08:00
become : true
2016-03-23 01:29:00 +08:00
2015-10-21 06:32:42 +08:00
tasks :
2016-04-07 03:58:17 +08:00
2016-10-06 12:32:38 +08:00
- name : stop ceph mdss with systemd
2016-02-10 20:13:39 +08:00
service :
2016-10-06 12:32:38 +08:00
name : ceph-mds@{{ ansible_hostname }}
2016-02-10 20:13:39 +08:00
state : stopped
enabled : no
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'systemd'
2015-10-21 06:32:42 +08:00
2016-10-06 12:32:38 +08:00
- name : stop ceph mdss
shell : "service ceph status mds ; if [ $? == 0 ] ; then service ceph stop mds ; else echo ; fi"
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'sysvinit'
2015-10-21 06:32:42 +08:00
2016-10-06 12:32:38 +08:00
- name : stop ceph mdss on ubuntu
command : initctl stop ceph-mds cluster={{ cluster }} id={{ ansible_hostname }}
failed_when : false
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'upstart'
2016-10-06 12:32:38 +08:00
- name : purge ceph rgw cluster
vars :
rgw_group_name : rgws
hosts :
2017-03-08 00:16:09 +08:00
- "{{ rgw_group_name|default('rgws') }}"
2016-10-06 12:32:38 +08:00
gather_facts : false # Already gathered previously
become : true
tasks :
2016-03-29 07:53:01 +08:00
- name : stop ceph rgws with systemd
service :
name : ceph-radosgw@rgw.{{ ansible_hostname }}
state : stopped
2016-10-06 12:32:38 +08:00
enabled : no
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'systemd'
2016-03-29 07:53:01 +08:00
2016-10-06 12:32:38 +08:00
- name : stop ceph rgws
shell : "service ceph-radosgw status ; if [ $? == 0 ] ; then service ceph-radosgw stop ; else echo ; fi"
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'sysvinit'
2016-10-06 12:32:38 +08:00
- name : stop ceph rgws on ubuntu
command : initctl stop radosgw cluster={{ cluster }} id={{ ansible_hostname }}
failed_when : false
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'upstart'
2016-10-06 12:32:38 +08:00
- name : purge ceph rbd-mirror cluster
vars :
2016-11-01 20:09:44 +08:00
rbdmirror_group_name : rbd-mirrors
2016-10-06 12:32:38 +08:00
hosts :
2017-03-08 00:16:09 +08:00
- "{{ rbdmirror_group_name|default('rbdmirrors') }}"
2016-10-06 12:32:38 +08:00
gather_facts : false # Already gathered previously
become : true
tasks :
2016-04-04 06:35:09 +08:00
- name : stop ceph rbd mirror with systemd
service :
name : ceph-rbd-mirror@admin.service
state : stopped
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'systemd'
2016-04-07 03:58:17 +08:00
2016-10-06 12:32:38 +08:00
- name : stop ceph rbd mirror on ubuntu
2016-11-01 20:29:21 +08:00
command : initctl stop ceph-rbd-mirror cluster={{ cluster }} id=admin
2016-10-06 12:32:38 +08:00
failed_when : false
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'upstart'
2014-08-14 20:08:52 +08:00
2014-04-11 22:34:33 +08:00
2016-10-06 12:32:38 +08:00
- name : purge ceph nfs cluster
vars :
nfs_group_name : nfss
hosts :
2017-03-08 00:16:09 +08:00
- "{{ nfs_group_name|default('nfss') }}"
2016-10-06 12:32:38 +08:00
gather_facts : false # Already gathered previously
become : true
tasks :
- name : stop ceph nfss with systemd
service :
name : nfs-ganesha
state : stopped
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'systemd'
2016-03-29 07:53:01 +08:00
2016-05-06 02:20:03 +08:00
- name : stop ceph nfss
shell : "service nfs-ganesha status ; if [ $? == 0 ] ; then service nfs-ganesha stop ; else echo ; fi"
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'sysvinit'
2016-05-06 02:20:03 +08:00
2016-10-06 12:32:38 +08:00
- name : stop ceph nfss on ubuntu
command : initctl stop nfs-ganesha
2015-07-29 00:21:15 +08:00
failed_when : false
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'upstart'
2015-07-08 16:34:16 +08:00
2016-10-06 12:32:38 +08:00
- name : purge ceph osd cluster
vars :
osd_group_name : osds
hosts :
2017-03-08 00:16:09 +08:00
- "{{ osd_group_name|default('osds') }}"
2016-10-06 12:32:38 +08:00
gather_facts : false # Already gathered previously
become : true
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
become : false
local_action : wait_for port=22 host={{ inventory_hostname }} state=started delay=10 timeout=500
- name : remove data
file :
path : /var/lib/ceph
state : absent
tasks :
- name : check for a device list
fail :
2016-11-01 19:39:21 +08:00
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/{{ osd_group_name }} using the devices variable."
2016-02-10 20:13:39 +08:00
when :
2017-01-18 17:53:21 +08:00
- devices|length == 0
- osd_auto_discovery
2016-03-24 18:37:35 +08:00
2016-10-06 12:32:38 +08:00
- name : get osd numbers
2017-03-30 17:51:38 +08:00
shell : "if [ -d /var/lib/ceph/osd ] ; then ls /var/lib/ceph/osd | sed 's/.*-//' ; fi"
2016-10-06 12:32:38 +08:00
register : osd_ids
changed_when : false
- name : stop ceph-osd with systemd
service :
name : ceph-osd@{{item}}
state : stopped
enabled : no
with_items : "{{ osd_ids.stdout_lines }}"
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'systemd'
2016-05-06 02:20:03 +08:00
2017-01-27 18:33:37 +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-10-06 12:32:38 +08:00
- name : stop ceph osds
shell : "service ceph status osd ; if [ $? == 0 ] ; then service ceph stop osd ; else echo ; fi"
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'sysvinit'
2016-03-29 07:53:01 +08:00
2016-10-06 12:32:38 +08:00
- name : stop ceph osds on ubuntu
2017-03-30 17:51:38 +08:00
command : initctl stop ceph-osd cluster={{ cluster }} id={{ item }}
2016-04-04 06:35:09 +08:00
failed_when : false
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'upstart'
2016-10-06 12:32:38 +08:00
with_items : "{{ osd_ids.stdout_lines }}"
2016-03-23 01:29:00 +08:00
2016-04-07 03:58:17 +08:00
- name : see if ceph-disk-created data partitions are present
2016-08-26 23:39:43 +08:00
shell : |
ls /dev/disk/by-partlabel | grep -q "ceph.*.data"
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-08-26 23:39:43 +08:00
shell : |
ls /dev/disk/by-partlabel | grep -q "ceph.*.journal"
2016-04-07 03:58:17 +08:00
failed_when : false
register : ceph_journal_partlabels
2017-01-19 22:28:44 +08:00
# Initial attempt, doing everything in Ansible...
# - name: see if encrypted partitions are present
# shell: blkid -t TYPE=crypto_LUKS -o value -s PARTUUID
# register: encrypted_partuuid
#
# - name: find if these encrypted partitions are ceph data partitions
# shell: blkid -t PARTLABEL="ceph data" -o value -s PARTUUID $(blkid -U {{ item }})
# failed_when: false
# with_items: "{{ encrypted_partuuid.stdout_lines }}"
# when: "{{ encrypted_partuuid | length > 0 }}"
# register: encrypted_partuuid_ceph_data
#
# - name: find if these encrypted partitions are ceph journal partitions
# shell: blkid -t PARTLABEL="ceph journal" -o value -s PARTUUID $(blkid -U {{ item }})
# failed_when: false
# with_items: "{{ encrypted_partuuid.stdout_lines }}"
# when: "{{ encrypted_partuuid | length > 0 }}"
# register: encrypted_partuuid_ceph_journal
#
# - name: merge the list of ceph encrypted partitions
# set_fact:
# encrypted_partuuid_ceph: "{{ encrypted_partuuid_ceph_data + encrypted_partuuid_ceph_journal }}"
# NOTE(leseb): hope someone will find a more elegant way one day...
- name : see if encrypted partitions are present
shell : |
blkid -t TYPE=crypto_LUKS -s PARTLABEL -s PARTUUID | grep "ceph.*." | grep -o PARTUUID.* | cut -d '"' -f 2
register : encrypted_ceph_partuuid
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
- name : umount osd data partition
2016-03-23 01:29:00 +08:00
shell : umount {{ item }}
2017-01-18 17:53:21 +08:00
with_items : "{{ mounted_osd.stdout_lines }}"
2016-02-10 20:13:39 +08:00
2016-03-23 01:29:00 +08:00
- name : remove osd mountpoint tree
2016-08-10 10:53:07 +08:00
file :
path : /var/lib/ceph/osd/
state : absent
2016-03-23 01:29:00 +08:00
register : remove_osd_mountpoints
2016-08-10 10:53:07 +08:00
ignore_errors : true
2016-03-24 20:49:26 +08:00
2016-03-23 01:29:00 +08:00
- name : is reboot needed
local_action : shell echo requesting reboot
2016-09-03 07:31:59 +08:00
become : false
2016-03-23 01:29:00 +08:00
notify :
- restart machine
- wait for server to boot
- remove data
2017-01-18 17:53:21 +08:00
when : remove_osd_mountpoints.failed is defined
2016-03-23 01:29:00 +08:00
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
2017-01-19 22:28:44 +08:00
- name : delete dm-crypt devices if any
command : dmsetup remove {{ item }}
2017-01-27 01:28:30 +08:00
with_items : "{{ encrypted_ceph_partuuid.stdout_lines }}"
2017-01-19 22:28:44 +08:00
when : "{{ encrypted_ceph_partuuid.stdout_lines | length > 0 }}"
2016-02-10 20:13:39 +08:00
- name : zap osd disks
shell : ceph-disk zap "{{ item }}"
2016-10-10 21:16:03 +08:00
with_items : "{{ devices }}"
2016-02-10 20:13:39 +08:00
when :
2017-01-18 17:53:21 +08:00
- ceph_disk_present.rc == 0
- ceph_data_partlabels.rc == 0
2016-02-10 20:13:39 +08:00
2016-12-23 03:47:22 +08:00
- name : get ceph journal partitions
shell : |
blkid | awk '/ceph journal/ { sub (":", "", $1); print $1 }'
2017-01-18 17:53:21 +08:00
when : ceph_journal_partlabels.rc == 0
2016-12-23 03:47:22 +08:00
failed_when : false
register : ceph_journal_partition_to_erase_path
2016-08-26 23:39:43 +08:00
- name : zap ceph journal partitions
shell : |
# if the disk passed is a raw device AND the boot system disk
if echo "{{ item }}" | egrep -sq '/dev/([hsv]d[a-z]{1,2}|cciss/c[0-9]d[0-9]p|nvme[0-9]n[0-9]p){1,2}$' && parted -s $(echo "{{ item }}" | egrep -o '/dev/([hsv]d[a-z]{1,2}|cciss/c[0-9]d[0-9]p|nvme[0-9]n[0-9]p){1,2}') print | grep -sq boot; then
echo "Looks like {{ item }} has a boot partition,"
echo "if you want to delete specific partitions point to the partition instead of the raw device"
echo "Do not use your system disk!"
exit 1
fi
2017-04-11 20:59:49 +08:00
raw_device=$(echo "{{ item }}" | egrep -o '/dev/([hsv]d[a-z]{1,2}|cciss/c[0-9]d[0-9]|nvme[0-9]n[0-9]){1,2}')
2016-08-26 23:39:43 +08:00
partition_nb=$(echo "{{ item }}" | egrep -o '[0-9]{1,2}$')
sgdisk --delete $partition_nb $raw_device
2017-01-27 18:21:04 +08:00
with_items : "{{ ceph_journal_partition_to_erase_path.stdout_lines | default([]) }}"
2016-02-29 20:19:56 +08:00
when :
2016-12-23 01:37:41 +08:00
- ceph_journal_partlabels.rc == 0
2017-02-15 23:53:13 +08:00
- (raw_multi_journal is defined and raw_multi_journal) or (dmcrypt_dedicated_journal is defined and dmcrypt_dedicated_journal)
2016-10-06 12:32:38 +08:00
- name : purge ceph mon cluster
vars :
2016-11-01 19:39:21 +08:00
mon_group_name : mons
restapi_group_name : restapis
2016-10-06 12:32:38 +08:00
hosts :
2017-03-08 00:16:09 +08:00
- "{{ mon_group_name|default('mons') }}"
2016-10-06 12:32:38 +08:00
gather_facts : false # Already gathered previously
become : true
tasks :
- name : stop ceph mons with systemd
service :
name : ceph-mon@{{ ansible_hostname }}
state : stopped
enabled : no
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'systemd'
2016-10-06 12:32:38 +08:00
- name : stop ceph mons
shell : "service ceph status mon ; if [ $? == 0 ] ; then service ceph stop mon ; else echo ; fi"
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'sysvinit'
2016-10-06 12:32:38 +08:00
- name : stop ceph mons on ubuntu
command : initctl stop ceph-mon cluster={{ cluster }} id={{ ansible_hostname }}
failed_when : false
2017-02-08 01:57:38 +08:00
when : ansible_service_mgr == 'upstart'
2016-10-06 12:32:38 +08:00
- name : remove monitor store and bootstrap keys
file :
path : /var/lib/ceph/
state : absent
- name : final cleanup - check any running ceph, purge ceph packages, purge config and remove data
vars :
2017-01-27 18:33:37 +08:00
# When set to true both groups of packages are purged.
# This can cause problem with qemu-kvm
2016-10-06 12:32:38 +08:00
purge_all_packages : true
ceph_packages :
- ceph
- ceph-common
- ceph-fs-common
- ceph-fuse
- ceph-mds
- ceph-release
- ceph-radosgw
2017-02-14 23:24:02 +08:00
- calamari-server
2016-10-06 12:32:38 +08:00
ceph_remaining_packages :
- libcephfs1
2016-12-09 23:42:04 +08:00
- libcephfs2
2016-10-06 12:32:38 +08:00
- librados2
- libradosstriper1
- librbd1
- python-cephfs
- python-rados
- python-rbd
hosts :
2017-03-08 00:16:09 +08:00
- "{{ mon_group_name|default('mons') }}"
- "{{ osd_group_name|default('osds') }}"
- "{{ mds_group_name|default('mdss') }}"
- "{{ rgw_group_name|default('rgws') }}"
- "{{ rbdmirror_group_name|default('rbdmirrors') }}"
- "{{ nfs_group_name|default('nfss') }}"
- "{{ client_group_name|default('clients') }}"
2016-10-06 12:32:38 +08:00
gather_facts : false # Already gathered previously
become : true
handlers :
- name : remove data
file :
path : /var/lib/ceph
state : absent
tasks :
2017-01-27 22:40:41 +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
2017-01-18 17:53:21 +08:00
with_items : "{{ ceph_packages }}"
when : ansible_pkg_mgr == 'yum'
2016-02-15 23:51:16 +08:00
- name : purge ceph packages with dnf
dnf :
name : "{{ item }}"
state : absent
2017-01-18 17:53:21 +08:00
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
2017-01-18 17:53:21 +08:00
with_items : "{{ ceph_packages }}"
when : 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
2017-01-18 17:53:21 +08:00
with_items : "{{ ceph_remaining_packages }}"
2016-02-10 20:13:39 +08:00
when :
2017-01-18 17:53:21 +08:00
- ansible_pkg_mgr == 'yum'
- purge_all_packages == true
2016-02-15 23:51:16 +08:00
- name : purge remaining ceph packages with dnf
dnf :
name : "{{ item }}"
state : absent
2017-01-18 17:53:21 +08:00
with_items : "{{ ceph_remaining_packages }}"
2016-02-15 23:51:16 +08:00
when :
2017-01-18 17:53:21 +08:00
- ansible_pkg_mgr == 'dnf'
- purge_all_packages == true
2016-02-15 23:01:00 +08:00
- name : purge remaining ceph packages with apt
apt :
name : "{{ item }}"
state : absent
2017-01-18 17:53:21 +08:00
with_items : "{{ ceph_remaining_packages }}"
2016-02-15 23:01:00 +08:00
when :
2017-01-18 17:53:21 +08:00
- ansible_pkg_mgr == 'apt'
- purge_all_packages == true
2016-02-10 20:13:39 +08:00
- 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 : request data removal
local_action : shell echo requesting data removal
2016-08-10 10:53:07 +08:00
become : false
2016-03-23 01:29:00 +08:00
notify :
- remove data
2016-03-29 07:53:01 +08:00
- name : purge dnf cache
command : dnf clean all
2017-01-18 17:53:21 +08:00
when : ansible_pkg_mgr == 'dnf'
2016-03-29 07:53:01 +08:00
2017-01-27 18:33:37 +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/*
2017-01-18 17:53:21 +08:00
when : ansible_pkg_mgr == 'apt'
2016-06-02 18:08:19 +08:00
- name : purge rh_storage.repo file in /etc/yum.repos.d
file :
path : /etc/yum.repos.d/rh_storage.repo
state : absent
2017-01-18 17:53:21 +08:00
when : ansible_os_family == 'RedHat'
2016-10-06 12:32:38 +08:00
2017-04-25 20:35:13 +08:00
- name : check for anything running ceph
command : "ps -u ceph -U ceph"
register : check_for_running_ceph
failed_when : check_for_running_ceph.rc == 0
2016-10-06 12:32:38 +08:00
- name : purge fetch directory
hosts :
- localhost
gather_facts : false
tasks :
2017-02-08 04:42:42 +08:00
- name : set fetch_directory value if not set
set_fact :
fetch_directory : "fetch/"
when : fetch_directory is not defined
2016-10-06 12:32:38 +08:00
- name : purge fetch directory for localhost
file :
path : "{{ fetch_directory }}"
state : absent