Browse Source

Merge pull request 'ceph: prevent osd label update on startup' (#41) from pr-amery-ceph into main

Reviewed-on: #41
pull/42/head
Nagy Károly Gábriel 4 months ago
parent
commit
3cafb1a4e2
  1. 3
      pkg/ceph/config.go

3
pkg/ceph/config.go

@ -39,6 +39,9 @@ func writeGlobalToBuffer(w *bytes.Buffer, c *GlobalConfig) {
_, _ = fmt.Fprintf(w, "%s = %s\n", "mon_initial_members", strings.Join(c.Monitors, ", "))
_, _ = fmt.Fprintf(w, "%s = %s\n", "mon_host", joinAddrs(c.MonitorsAddr, ", "))
_, _ = fmt.Fprintf(w, "%s = %s\n", "cluster_network", c.ClusterNetwork.String())
_, _ = fmt.Fprintf(w, "\n; %s\n", "don't rewrite labels on startup")
_, _ = fmt.Fprintf(w, "%s = %s\n", "osd_class_update_on_start", "false")
}
func joinAddrs(addrs []netip.Addr, sep string) string {

Loading…
Cancel
Save