Ceph Config File (Separate Subnet)

fakebizprez

Member
Jul 29, 2024
36
1
8
37
Chicago, IL
www.linehaul.ai
Hello everyone, I have been using Ceph for the past few months and have recently acquired the necessary hardware to set up Ceph on its subnet, as advised in the Ceph and Proxmox documentation.

I am unsure if I have configured this correctly. Below is my configuration file, where you will also find three questions that I have. Before I restore the nodes from PBS, I would like to pause here for feedback. If anyone has any other feedback or questions, I would greatly appreciate it. Thank you.

Code:
[global]
    auth_client_required = cephx
    auth_cluster_required = cephx
    auth_service_required = cephx
    cluster_network = 10.0.0.1/24
        # should this be 10.0.0.0/24?
    fsid = e4aa8136-854c-4504-b839-795aaac19cd3
    mon_allow_pool_delete = true
    mon_host = 192.168.128.200 192.168.128.202 192.168.128.201
        # should the mon_host ip be public or their ceph cluster ip?
    ms_bind_ipv4 = true
    ms_bind_ipv6 = false
    osd_pool_default_min_size = 2
    osd_pool_default_size = 3
    public_network = 192.168.128.200/24
        # should this be 192.168.128.0/24?

[client]
    keyring = /etc/pve/priv/$cluster.$name.keyring

[client.crash]
    keyring = /etc/pve/ceph/$cluster.$name.keyring

[mon.creepified]
    public_addr = 192.168.128.202

[mon.scumified]
    public_addr = 192.168.128.200

[mon.vilified]
    public_addr = 192.168.128.201