Since NFS plugin does not support ControllerServiceCapability, set it to csi.ControllerServiceCapability_RPC_UNKNOWN. Also set ControllerServer to nil instead of using the default because ControllerServer is not implemented in NFS plugin. If this support is added in the future, capabilities need to be added accordingly.
79 lines
2.0 KiB
Go
79 lines
2.0 KiB
Go
/*
|
|
Copyright 2017 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package nfs
|
|
|
|
import (
|
|
"github.com/container-storage-interface/spec/lib/go/csi/v0"
|
|
"github.com/golang/glog"
|
|
|
|
"github.com/kubernetes-csi/drivers/pkg/csi-common"
|
|
)
|
|
|
|
type driver struct {
|
|
csiDriver *csicommon.CSIDriver
|
|
endpoint string
|
|
|
|
ids *csicommon.DefaultIdentityServer
|
|
ns *nodeServer
|
|
|
|
cap []*csi.VolumeCapability_AccessMode
|
|
cscap []*csi.ControllerServiceCapability
|
|
}
|
|
|
|
const (
|
|
driverName = "csi-nfsplugin"
|
|
)
|
|
|
|
var (
|
|
version = "0.2.0"
|
|
)
|
|
|
|
func NewDriver(nodeID, endpoint string) *driver {
|
|
glog.Infof("Driver: %v version: %v", driverName, version)
|
|
|
|
d := &driver{}
|
|
|
|
d.endpoint = endpoint
|
|
|
|
csiDriver := csicommon.NewCSIDriver(driverName, version, nodeID)
|
|
csiDriver.AddVolumeCapabilityAccessModes([]csi.VolumeCapability_AccessMode_Mode{csi.VolumeCapability_AccessMode_MULTI_NODE_MULTI_WRITER})
|
|
// NFS plugin does not support ControllerServiceCapability now.
|
|
// If support is added, it should set to appropriate
|
|
// ControllerServiceCapability RPC types.
|
|
csiDriver.AddControllerServiceCapabilities([]csi.ControllerServiceCapability_RPC_Type{csi.ControllerServiceCapability_RPC_UNKNOWN})
|
|
|
|
d.csiDriver = csiDriver
|
|
|
|
return d
|
|
}
|
|
|
|
func NewNodeServer(d *driver) *nodeServer {
|
|
return &nodeServer{
|
|
DefaultNodeServer: csicommon.NewDefaultNodeServer(d.csiDriver),
|
|
}
|
|
}
|
|
|
|
func (d *driver) Run() {
|
|
s := csicommon.NewNonBlockingGRPCServer()
|
|
s.Start(d.endpoint,
|
|
csicommon.NewDefaultIdentityServer(d.csiDriver),
|
|
// NFS plugin has not implemented ControllerServer.
|
|
nil,
|
|
NewNodeServer(d))
|
|
s.Wait()
|
|
}
|