From 6b3484f285a832da1dea41d389d65715dc266717 Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Mon, 5 Feb 2024 09:11:51 +0100 Subject: [PATCH] cephfs: add volumegroup service capability Add GROUP_CONTROLLER_SERVICE capabilities to the GetPluginCapabilities of the cephFS plugin. Signed-off-by: Madhu Rajanna --- internal/cephfs/identityserver.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/internal/cephfs/identityserver.go b/internal/cephfs/identityserver.go index 625fc3842..b2a041a32 100644 --- a/internal/cephfs/identityserver.go +++ b/internal/cephfs/identityserver.go @@ -58,6 +58,13 @@ func (is *IdentityServer) GetPluginCapabilities( }, }, }, + { + Type: &csi.PluginCapability_Service_{ + Service: &csi.PluginCapability_Service{ + Type: csi.PluginCapability_Service_GROUP_CONTROLLER_SERVICE, + }, + }, + }, }, }, nil }