From 76d94007258871657233fbeb4381ee87048c64de Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Fri, 3 Nov 2023 09:49:08 +0100 Subject: [PATCH] cleanup: remove left-overs of ReplicationServer in csi-common The ReplicationServer is not used anymore, the functionality has moved to CSI-Addons and the `internal/csi-addons/rbd` package. These last references were not activated anywhere, so can be removed without any impact. See-also: #3314 Signed-off-by: Niels de Vos --- internal/cephfs/driver.go | 2 -- internal/csi-common/server.go | 5 ---- internal/csi-common/utils.go | 43 +---------------------------------- 3 files changed, 1 insertion(+), 49 deletions(-) diff --git a/internal/cephfs/driver.go b/internal/cephfs/driver.go index 781c89e9ad3..60e0dec654f 100644 --- a/internal/cephfs/driver.go +++ b/internal/cephfs/driver.go @@ -166,8 +166,6 @@ func (fs *Driver) Run(conf *util.Config) { IS: fs.is, CS: fs.cs, NS: fs.ns, - // passing nil for replication server as cephFS does not support mirroring. - RS: nil, } server.Start(conf.Endpoint, srv) diff --git a/internal/csi-common/server.go b/internal/csi-common/server.go index a75f2457101..8dc4331a0c1 100644 --- a/internal/csi-common/server.go +++ b/internal/csi-common/server.go @@ -24,7 +24,6 @@ import ( "github.com/ceph/ceph-csi/internal/util/log" "github.com/container-storage-interface/spec/lib/go/csi" - "github.com/csi-addons/spec/lib/go/replication" "google.golang.org/grpc" "k8s.io/klog/v2" ) @@ -46,7 +45,6 @@ type Servers struct { IS csi.IdentityServer CS csi.ControllerServer NS csi.NodeServer - RS replication.ControllerServer } // NewNonBlockingGRPCServer return non-blocking GRPC. @@ -111,9 +109,6 @@ func (s *nonBlockingGRPCServer) serve(endpoint string, srv Servers) { if srv.NS != nil { csi.RegisterNodeServer(server, srv.NS) } - if srv.RS != nil { - replication.RegisterControllerServer(server, srv.RS) - } log.DefaultLog("Listening for connections on address: %#v", listener.Addr()) err = server.Serve(listener) diff --git a/internal/csi-common/utils.go b/internal/csi-common/utils.go index 9c333c9a72f..09049f1fc21 100644 --- a/internal/csi-common/utils.go +++ b/internal/csi-common/utils.go @@ -28,8 +28,6 @@ import ( "github.com/ceph/ceph-csi/internal/util/log" "github.com/container-storage-interface/spec/lib/go/csi" - rp "github.com/csi-addons/replication-lib-utils/protosanitizer" - "github.com/csi-addons/spec/lib/go/replication" grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware" grpc_prometheus "github.com/grpc-ecosystem/go-grpc-prometheus" "github.com/kubernetes-csi/csi-lib-utils/protosanitizer" @@ -93,22 +91,6 @@ func NewControllerServiceCapability(ctrlCap csi.ControllerServiceCapability_RPC_ } } -// Add replication request names to the list when we implement more API's. -func isReplicationRequest(req interface{}) bool { - isReplicationRequest := true - switch req.(type) { - case *replication.EnableVolumeReplicationRequest: - case *replication.DisableVolumeReplicationRequest: - case *replication.PromoteVolumeRequest: - case *replication.DemoteVolumeRequest: - case *replication.ResyncVolumeRequest: - default: - isReplicationRequest = false - } - - return isReplicationRequest -} - // NewMiddlewareServerOption creates a new grpc.ServerOption that configures a // common format for log messages and other gRPC related handlers. func NewMiddlewareServerOption(withMetrics bool) grpc.ServerOption { @@ -151,19 +133,6 @@ func getReqID(req interface{}) string { case *csi.NodeExpandVolumeRequest: reqID = r.VolumeId - - case *replication.EnableVolumeReplicationRequest: - reqID = r.VolumeId - case *replication.DisableVolumeReplicationRequest: - reqID = r.VolumeId - - case *replication.PromoteVolumeRequest: - reqID = r.VolumeId - case *replication.DemoteVolumeRequest: - reqID = r.VolumeId - - case *replication.ResyncVolumeRequest: - reqID = r.VolumeId } return reqID @@ -193,18 +162,8 @@ func logGRPC( handler grpc.UnaryHandler, ) (interface{}, error) { log.ExtendedLog(ctx, "GRPC call: %s", info.FullMethod) - // TODO: remove the following check for next release - // refer to https://github.com/ceph/ceph-csi/issues/3314. - if isReplicationRequest(req) { - strippedMessage := protosanitizer.StripSecrets(req).String() - if !strings.Contains(strippedMessage, "***stripped***") { - strippedMessage = rp.StripReplicationSecrets(req).String() - } + log.TraceLog(ctx, "GRPC request: %s", protosanitizer.StripSecrets(req)) - log.TraceLog(ctx, "GRPC request: %s", strippedMessage) - } else { - log.TraceLog(ctx, "GRPC request: %s", protosanitizer.StripSecrets(req)) - } resp, err := handler(ctx, req) if err != nil { klog.Errorf(log.Log(ctx, "GRPC error: %v"), err)