From 68ea0f9bfa601d89d2645a7e9b68e4d4eb3f61ff Mon Sep 17 00:00:00 2001 From: "Venkata, Krishna (kv988c)" Date: Thu, 22 Aug 2019 11:39:35 -0500 Subject: [PATCH] [ceph]: Added procedure to stop the osd pod from being scheduled Change-Id: I7d39f5fdfe9a198baaadfc0f56fbf7b7d0a8fc6b --- docs/ceph_maintenance.md | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/docs/ceph_maintenance.md b/docs/ceph_maintenance.md index 369f3846..b9d62b17 100644 --- a/docs/ceph_maintenance.md +++ b/docs/ceph_maintenance.md @@ -42,23 +42,38 @@ utilscli osd-maintenance reweight_osds ## 2. Replace failed OSD ## -In the context of a failed drive, Please follow below procedure. Following commands should be run from utility container +In the context of a failed drive, Please follow below procedure. + +Disable OSD pod on the host from being rescheduled + + kubectl label nodes --all ceph_maintenance_window=inactive + +Replace `` with the name of the node were the failed osd pods exist. + + kubectl label nodes --overwrite ceph_maintenance_window=active + +Replace `` with failed OSD pod name + + kubectl patch -n ceph ds -p='{"spec":{"template":{"spec":{"nodeSelector":{"ceph-osd":"enabled","ceph_maintenance_window":"inactive"}}}}}' + +Following commands should be run from utility container Capture the failed OSD ID. Check for status `down` - utilscli ceph osd tree + utilscli ceph osd tree Remove the OSD from Cluster. Replace `` with above captured failed OSD ID - utilscli osd-maintenance osd_remove_by_id --osd-id + utilscli osd-maintenance osd_remove_by_id --osd-id Remove the failed drive and replace it with a new one without bringing down the node. -Once new drive is placed, delete the concern OSD pod in `error` or `CrashLoopBackOff` state. Replace `` with failed OSD pod name. +Once new drive is placed, change the label and delete the concern OSD pod in `error` or `CrashLoopBackOff` state. Replace `` with failed OSD pod name. - kubectl delete pod -n ceph + kubectl label nodes --overwrite ceph_maintenance_window=inactive + kubectl delete pod -n ceph Once pod is deleted, kubernetes will re-spin a new pod for the OSD. Once Pod is up, the osd is added to ceph cluster with weight equal to `0`. we need to re-weight the osd. - utilscli osd-maintenance reweight_osds + utilscli osd-maintenance reweight_osds