From 025b9072b4719b03c577b76f9ca11a74a0ce21bb Mon Sep 17 00:00:00 2001 From: Alejandro Mery Date: Tue, 5 Sep 2023 11:25:11 +0000 Subject: [PATCH] zones: introduce Machine.CephMonitor field Signed-off-by: Alejandro Mery --- pkg/zones/machine.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/zones/machine.go b/pkg/zones/machine.go index 1dd64a2..8500e9e 100644 --- a/pkg/zones/machine.go +++ b/pkg/zones/machine.go @@ -15,6 +15,8 @@ type Machine struct { PublicAddresses []netip.Addr `toml:"public,omitempty" json:"public,omitempty" yaml:"public,omitempty"` Rings []*RingInfo `toml:"rings,omitempty" json:"rings,omitempty" yaml:"rings,omitempty"` + + CephMonitor bool `toml:"ceph_monitor,omitempty" json:"ceph_monitor,omitempty" yaml:"ceph_monitor,omitempty"` } // revive:enable:line-length-limit