-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from mathu97/remove-csi-common
Remove csi-common dependancies
- Loading branch information
Showing
15 changed files
with
291 additions
and
732 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package nfs | ||
|
||
import ( | ||
"github.com/container-storage-interface/spec/lib/go/csi" | ||
"github.com/golang/glog" | ||
"golang.org/x/net/context" | ||
"google.golang.org/grpc/codes" | ||
"google.golang.org/grpc/status" | ||
) | ||
|
||
type IdentityServer struct { | ||
Driver *nfsDriver | ||
} | ||
|
||
func (ids *IdentityServer) GetPluginInfo(ctx context.Context, req *csi.GetPluginInfoRequest) (*csi.GetPluginInfoResponse, error) { | ||
glog.V(5).Infof("Using default GetPluginInfo") | ||
|
||
if ids.Driver.name == "" { | ||
return nil, status.Error(codes.Unavailable, "Driver name not configured") | ||
} | ||
|
||
if ids.Driver.version == "" { | ||
return nil, status.Error(codes.Unavailable, "Driver is missing version") | ||
} | ||
|
||
return &csi.GetPluginInfoResponse{ | ||
Name: ids.Driver.name, | ||
VendorVersion: ids.Driver.version, | ||
}, nil | ||
} | ||
|
||
func (ids *IdentityServer) Probe(ctx context.Context, req *csi.ProbeRequest) (*csi.ProbeResponse, error) { | ||
return &csi.ProbeResponse{}, nil | ||
} | ||
|
||
func (ids *IdentityServer) GetPluginCapabilities(ctx context.Context, req *csi.GetPluginCapabilitiesRequest) (*csi.GetPluginCapabilitiesResponse, error) { | ||
glog.V(5).Infof("Using default capabilities") | ||
return &csi.GetPluginCapabilitiesResponse{ | ||
Capabilities: []*csi.PluginCapability{ | ||
{ | ||
Type: &csi.PluginCapability_Service_{ | ||
Service: &csi.PluginCapability_Service{ | ||
Type: csi.PluginCapability_Service_CONTROLLER_SERVICE, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/* | ||
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" | ||
"github.com/golang/glog" | ||
) | ||
|
||
type nfsDriver struct { | ||
name string | ||
nodeID string | ||
version string | ||
|
||
endpoint string | ||
|
||
//ids *identityServer | ||
ns *nodeServer | ||
cap []*csi.VolumeCapability_AccessMode | ||
cscap []*csi.ControllerServiceCapability | ||
} | ||
|
||
const ( | ||
driverName = "csi-nfsplugin" | ||
) | ||
|
||
var ( | ||
version = "1.0.0-rc2" | ||
) | ||
|
||
func NewNFSdriver(nodeID, endpoint string) *nfsDriver { | ||
glog.Infof("Driver: %v version: %v", driverName, version) | ||
|
||
n := &nfsDriver{ | ||
name: driverName, | ||
version: version, | ||
nodeID: nodeID, | ||
endpoint: endpoint, | ||
} | ||
|
||
n.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. | ||
n.AddControllerServiceCapabilities([]csi.ControllerServiceCapability_RPC_Type{csi.ControllerServiceCapability_RPC_UNKNOWN}) | ||
|
||
return n | ||
} | ||
|
||
func NewNodeServer(n *nfsDriver) *nodeServer { | ||
return &nodeServer{ | ||
Driver: n, | ||
} | ||
} | ||
|
||
func (n *nfsDriver) Run() { | ||
s := NewNonBlockingGRPCServer() | ||
s.Start(n.endpoint, | ||
NewDefaultIdentityServer(n), | ||
// NFS plugin has not implemented ControllerServer | ||
// using default controllerserver. | ||
NewControllerServer(n), | ||
NewNodeServer(n)) | ||
s.Wait() | ||
} | ||
|
||
func (n *nfsDriver) AddVolumeCapabilityAccessModes(vc []csi.VolumeCapability_AccessMode_Mode) []*csi.VolumeCapability_AccessMode { | ||
var vca []*csi.VolumeCapability_AccessMode | ||
for _, c := range vc { | ||
glog.Infof("Enabling volume access mode: %v", c.String()) | ||
vca = append(vca, &csi.VolumeCapability_AccessMode{Mode: c}) | ||
} | ||
n.cap = vca | ||
return vca | ||
} | ||
|
||
func (n *nfsDriver) AddControllerServiceCapabilities(cl []csi.ControllerServiceCapability_RPC_Type) { | ||
var csc []*csi.ControllerServiceCapability | ||
|
||
for _, c := range cl { | ||
glog.Infof("Enabling controller service capability: %v", c.String()) | ||
csc = append(csc, NewControllerServiceCapability(c)) | ||
} | ||
|
||
n.cscap = csc | ||
|
||
return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.