Initialize the new SSDs and set them up as Ceph OSDs
Description
Description
Status | Assigned | Task | ||
---|---|---|---|---|
Migrated | gitlab-migration | T2501 Proxmox reliability improvements (Summer 2020) | ||
Migrated | gitlab-migration | T2502 Migrate VM storage to ceph | ||
Migrated | gitlab-migration | T2503 Set up hyperconverged ceph cluster | ||
Migrated | gitlab-migration | T2508 Update Ceph pool to use the default CRUSH replication rule | ||
Migrated | gitlab-migration | T2504 Add hypervisor3 ssds as Ceph OSDs | ||
Migrated | gitlab-migration | T2505 Migrate hypervisor3 vms to (temporary) ceph pool | ||
Migrated | gitlab-migration | T2507 Set up temporary (single-host) ceph pool | ||
Migrated | gitlab-migration | T2506 Add new beaubourg SSDs as Ceph OSDs |
Event Timeline
Comment Actions
Find new disks in megacli
sudo megacli -PDList -aALL | less
Initialize new disks JBOD instead of RAID
for slot in 13 14 15 16; do sudo megacli -PDMakeJBOD -PhysDrv[32:$slot] -aALL ; done
Find drive letters for the new disks in kernel logs
journalctl -k --since '15 minutes ago'
Setup Ceph OSD
for letter in m n o p; do sudo pveceph osd create /dev/sd$letter; done