You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #256 started me thinking about other issues related to ceph.conf.
mon_allow_pool_delete = false
may need to toggle in conjunction with disengage.safety runner.
The monitor hostnames/addresses are not necessary in environments that support DNS SRV records. Maybe the inclusion of mon_initial_members and mon_host should be conditional.
rbd default features = 3
is currently hardcoded. This likely needs to be re-evaulated. (Maybe this lives as an example in ceph.conf.d)
The text was updated successfully, but these errors were encountered:
mon_allow_pool_delete = false
may need to toggle in conjunction with disengage.safety runner.
That seems like a good approach to me. This option can be set at runtime via ceph tell. I'll look into a patch for this.
The monitor hostnames/addresses are not necessary in environments that support DNS SRV records. Maybe the inclusion of mon_initial_members and mon_host should be conditional.
Doesn't ceph need this to get to a initial quorum? If so seems like a bad idea to maybe not include it...or am I misunderstanding?
Doesn't ceph need this to get to a initial quorum? If so seems like a bad idea to maybe not include it...or am I misunderstanding?
I made a mistake the other day and had a cluster with no mon_hosts set. Ceph naturally falls back to DNS SRV records. Some sites might be using this, but we are hardcoding the monitor addresses. I think that's still a reasonable default, but we should make that part of the ceph.conf easy to opt out.
PR #256 started me thinking about other issues related to ceph.conf.
mon_allow_pool_delete = false
may need to toggle in conjunction with disengage.safety runner.
The monitor hostnames/addresses are not necessary in environments that support DNS SRV records. Maybe the inclusion of mon_initial_members and mon_host should be conditional.
rbd default features = 3
is currently hardcoded. This likely needs to be re-evaulated. (Maybe this lives as an example in ceph.conf.d)
The text was updated successfully, but these errors were encountered: