mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 22:30:23 +00:00
util: remove unused CSI server initialization functions
Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
parent
5a1e370433
commit
2d70e25081
@ -82,33 +82,6 @@ func NewControllerServiceCapability(ctrlCap csi.ControllerServiceCapability_RPC_
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunNodePublishServer starts node server.
|
|
||||||
func RunNodePublishServer(endpoint, hstOption string, d *CSIDriver, ns csi.NodeServer, m bool) {
|
|
||||||
ids := NewDefaultIdentityServer(d)
|
|
||||||
|
|
||||||
s := NewNonBlockingGRPCServer()
|
|
||||||
s.Start(endpoint, hstOption, ids, nil, ns, m)
|
|
||||||
s.Wait()
|
|
||||||
}
|
|
||||||
|
|
||||||
// RunControllerPublishServer starts controller server.
|
|
||||||
func RunControllerPublishServer(endpoint, hstOption string, d *CSIDriver, cs csi.ControllerServer, m bool) {
|
|
||||||
ids := NewDefaultIdentityServer(d)
|
|
||||||
|
|
||||||
s := NewNonBlockingGRPCServer()
|
|
||||||
s.Start(endpoint, hstOption, ids, cs, nil, m)
|
|
||||||
s.Wait()
|
|
||||||
}
|
|
||||||
|
|
||||||
// RunControllerandNodePublishServer starts both controller and node server.
|
|
||||||
func RunControllerandNodePublishServer(endpoint, hstOption string, d *CSIDriver, cs csi.ControllerServer, ns csi.NodeServer, m bool) {
|
|
||||||
ids := NewDefaultIdentityServer(d)
|
|
||||||
|
|
||||||
s := NewNonBlockingGRPCServer()
|
|
||||||
s.Start(endpoint, hstOption, ids, cs, ns, m)
|
|
||||||
s.Wait()
|
|
||||||
}
|
|
||||||
|
|
||||||
func getReqID(req interface{}) string {
|
func getReqID(req interface{}) string {
|
||||||
// if req is nil empty string will be returned
|
// if req is nil empty string will be returned
|
||||||
reqID := ""
|
reqID := ""
|
||||||
|
Loading…
Reference in New Issue
Block a user