mirror of https://github.com/ceph/ceph-ansible.git
commit
598d78cef3
|
@ -76,6 +76,7 @@
|
||||||
cluster: ceph # name of the cluster
|
cluster: ceph # name of the cluster
|
||||||
monitor_name: "{{ ansible_hostname }}"
|
monitor_name: "{{ ansible_hostname }}"
|
||||||
mds_name: "{{ ansible_hostname }}"
|
mds_name: "{{ ansible_hostname }}"
|
||||||
|
osd_auto_discovery: false
|
||||||
|
|
||||||
|
|
||||||
handlers:
|
handlers:
|
||||||
|
@ -262,24 +263,36 @@
|
||||||
rbdmirror_group_name in group_names
|
rbdmirror_group_name in group_names
|
||||||
|
|
||||||
- name: check for anything running ceph
|
- name: check for anything running ceph
|
||||||
shell: "ps awux | grep -- [c]eph-"
|
shell: "ps awux | grep -- /usr/bin/[c]eph-"
|
||||||
register: check_for_running_ceph
|
register: check_for_running_ceph
|
||||||
failed_when: check_for_running_ceph.rc == 0
|
failed_when: check_for_running_ceph.rc == 0
|
||||||
|
|
||||||
- name: see if ceph-disk-created data partitions are present
|
- name: see if ceph-disk-created data partitions are present
|
||||||
shell: "ls /dev/disk/by-partlabel | grep -q 'ceph\\\\x20data'"
|
shell: |
|
||||||
|
ls /dev/disk/by-partlabel | grep -q "ceph.*.data"
|
||||||
failed_when: false
|
failed_when: false
|
||||||
register: ceph_data_partlabels
|
register: ceph_data_partlabels
|
||||||
|
|
||||||
- name: see if ceph-disk-created journal partitions are present
|
- name: see if ceph-disk-created journal partitions are present
|
||||||
shell: "ls /dev/disk/by-partlabel | grep -q 'ceph\\\\x20journal'"
|
shell: |
|
||||||
|
ls /dev/disk/by-partlabel | grep -q "ceph.*.journal"
|
||||||
failed_when: false
|
failed_when: false
|
||||||
register: ceph_journal_partlabels
|
register: ceph_journal_partlabels
|
||||||
|
|
||||||
|
- name: get ceph journal partitions
|
||||||
|
shell: |
|
||||||
|
blkid | awk '/ceph journal/ { sub (":", "", $1); print $1 }'
|
||||||
|
when:
|
||||||
|
- ceph_journal_partlabels.rc == 0
|
||||||
|
failed_when: false
|
||||||
|
register: ceph_journal_partition_to_erase_path
|
||||||
|
|
||||||
- name: get osd data mount points
|
- name: get osd data mount points
|
||||||
shell: "(grep /var/lib/ceph/osd /proc/mounts || echo -n) | awk '{ print $2 }'"
|
shell: "(grep /var/lib/ceph/osd /proc/mounts || echo -n) | awk '{ print $2 }'"
|
||||||
register: mounted_osd
|
register: mounted_osd
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
when:
|
||||||
|
osd_group_name in group_names
|
||||||
|
|
||||||
- name: drop all cache
|
- name: drop all cache
|
||||||
shell: "sync && sleep 1 && echo 3 > /proc/sys/vm/drop_caches"
|
shell: "sync && sleep 1 && echo 3 > /proc/sys/vm/drop_caches"
|
||||||
|
@ -334,15 +347,23 @@
|
||||||
ceph_data_partlabels.rc == 0 and
|
ceph_data_partlabels.rc == 0 and
|
||||||
zap_block_devs
|
zap_block_devs
|
||||||
|
|
||||||
- name: zap journal devices
|
- name: zap ceph journal partitions
|
||||||
shell: ceph-disk zap "{{ item }}"
|
shell: |
|
||||||
with_items: "{{ raw_journal_devices|default([])|unique }}"
|
# 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
|
||||||
|
raw_device=$(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}')
|
||||||
|
partition_nb=$(echo "{{ item }}" | egrep -o '[0-9]{1,2}$')
|
||||||
|
sgdisk --delete $partition_nb $raw_device
|
||||||
|
with_items: "{{ceph_journal_partition_to_erase_path.stdout_lines}}"
|
||||||
when:
|
when:
|
||||||
osd_group_name in group_names and
|
osd_group_name in group_names and
|
||||||
ceph_disk_present.rc == 0 and
|
|
||||||
ceph_journal_partlabels.rc == 0 and
|
ceph_journal_partlabels.rc == 0 and
|
||||||
zap_block_devs and
|
zap_block_devs
|
||||||
raw_multi_journal
|
|
||||||
|
|
||||||
- name: purge ceph packages with yum
|
- name: purge ceph packages with yum
|
||||||
yum:
|
yum:
|
||||||
|
|
Loading…
Reference in New Issue