From 4b49d2898f5f034f76a8b7df7dcde785a954805c Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Tue, 23 Apr 2024 13:18:14 +0200 Subject: [PATCH] build: include MirrorDaemonCount in the ConfigMap API It seems that original commit 4c2d2caf9f modified the API under the vendor/ directory. Weirdly this did not cause any issues?! The change should have been done in the api/deploy/kubernetes/ file instead, that gets sync'd after running "go mod vendor". Signed-off-by: Niels de Vos --- api/deploy/kubernetes/csi-config-map.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/deploy/kubernetes/csi-config-map.go b/api/deploy/kubernetes/csi-config-map.go index 4d237b3c5..0c418e23d 100644 --- a/api/deploy/kubernetes/csi-config-map.go +++ b/api/deploy/kubernetes/csi-config-map.go @@ -46,6 +46,8 @@ type RBD struct { NetNamespaceFilePath string `json:"netNamespaceFilePath"` // RadosNamespace is a rados namespace in the pool RadosNamespace string `json:"radosNamespace"` + // RBD mirror daemons running in the ceph cluster. + MirrorDaemonCount int `json:"mirrorDaemonCount"` } type NFS struct {