Ceph: Difference between revisions

From Delft Solutions
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
==== Configuring maintenance related ====
==== Configuring maintenance related ====
===== Add and remove `noout` flag on specific osd =====
===== Add and remove `noout` flag on specific osd =====
* ceph osd add-noout osd.{id}
* ceph osd add-noout osd.{id}
Line 11: Line 12:
* ha-manager crm-command node-maintenance enable {node}
* ha-manager crm-command node-maintenance enable {node}
* ha-manager crm-command node-maintenance disable {node}
* ha-manager crm-command node-maintenance disable {node}
==== Permutation related ====


===== Destroy OSD =====
===== Destroy OSD =====

Revision as of 12:48, 8 January 2026

Configuring maintenance related

Add and remove `noout` flag on specific osd
  • ceph osd add-noout osd.{id}
  • ceph osd rm-noout osd.{id}
Add and remove 'noout' flag from node
  • ceph osd set-group noout {node}
  • ceph osd unset-group noout {node}
Enable/disable HA maintenance on a node
  • ha-manager crm-command node-maintenance enable {node}
  • ha-manager crm-command node-maintenance disable {node}


Permutation related

Destroy OSD

Needs to be executed on the node with the OSD

  • ceph osd safe-to-destroy osd.{id}
  • systemctl stop ceph-osd@{id}
  • pveceph osd destroy {id}
  • ceph-volume lvm zap /dev/sd[X] --destroy
Create OSD

Needs to be executed on the node with the OSD

  • pveceph osd create /dev/sd[X] --encrypted 1 --crush-device-class hdd
Change device class
  • ceph osd crush rm-device-class osd.{id}
  • ceph osd crush set-device-class [hdd|ssd|nvme] osd.{id}