Project

General

Profile

Documentation #43712

Updated by Sebastian Wagner almost 4 years ago

If you want to provision a new host, the workflow will be like 

 1. Add this new host 

 <pre> `host add` 
 ceph orch host add <hostname> 
 </pre> 

 2. Call `device ls` 

 <pre> 
 ceph orch device ls --hostname <hostname> 
 </pre> 

 3. 2. create or re-use a drive group 

 <pre> 
 ceph orch ls --service_type osd --export > osd_specs.yaml 
 vi osd_spec.yaml 
 ceph orch apply -i osd_specs.yaml 
 </pre> 2. Create new OSDs `osd create` with the drive group 

 This workflow should be added to the documentation 

Back