k8s-csi-s3/pkg/driver/driver.go

100 lines
2.5 KiB
Go
Raw Normal View History

2018-07-14 10:48:22 +02:00
/*
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 driver
2018-07-14 10:48:22 +02:00
import (
"github.com/container-storage-interface/spec/lib/go/csi"
2018-07-14 10:48:22 +02:00
"github.com/golang/glog"
)
type driver struct {
2023-03-31 23:05:26 +02:00
ids *IdentityServer
cs *ControllerServer
name string
nodeID string
version string
2018-07-14 10:48:22 +02:00
endpoint string
2023-03-31 23:05:26 +02:00
ns *NodeServer
cap []*csi.VolumeCapability_AccessMode
cscap []*csi.ControllerServiceCapability
2018-07-14 10:48:22 +02:00
}
var (
vendorVersion = "v1.34.7"
2021-07-27 13:05:32 +03:00
driverName = "ru.yandex.s3.csi"
2018-07-14 10:48:22 +02:00
)
// New initializes the driver
func New(nodeID string, endpoint string) (*driver, error) {
2023-03-31 23:05:26 +02:00
glog.Infof("Driver: %v version: %v", driverName, vendorVersion)
2018-07-14 10:48:22 +02:00
2023-03-31 23:05:26 +02:00
d := &driver{
name: driverName,
version: vendorVersion,
nodeID: nodeID,
2018-07-14 10:48:22 +02:00
endpoint: endpoint,
}
2023-03-31 23:05:26 +02:00
return d, nil
2018-07-14 10:48:22 +02:00
}
2023-03-31 23:05:26 +02:00
func (d *driver) 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})
2018-07-14 10:48:22 +02:00
}
2023-03-31 23:05:26 +02:00
d.cap = vca
return vca
2018-07-14 10:48:22 +02:00
}
2023-03-31 23:05:26 +02:00
func (d *driver) AddControllerServiceCapabilities(cl []csi.ControllerServiceCapability_RPC_Type) {
var csc []*csi.ControllerServiceCapability
2018-07-14 10:48:22 +02:00
2023-03-31 23:05:26 +02:00
for _, c := range cl {
glog.Infof("Enabling controller service capability: %v", c.String())
csc = append(csc, NewControllerServiceCapability(c))
2018-07-14 10:48:22 +02:00
}
2023-03-31 23:05:26 +02:00
d.cscap = csc
return
2018-07-14 10:48:22 +02:00
}
func (s3 *driver) Run() {
2023-03-31 23:05:26 +02:00
2018-07-14 10:48:22 +02:00
glog.Infof("Driver: %v ", driverName)
glog.Infof("Version: %v ", vendorVersion)
2018-07-14 10:48:22 +02:00
// Initialize default library driver
2023-03-31 23:05:26 +02:00
s3.AddControllerServiceCapabilities([]csi.ControllerServiceCapability_RPC_Type{csi.ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME})
s3.AddVolumeCapabilityAccessModes([]csi.VolumeCapability_AccessMode_Mode{csi.VolumeCapability_AccessMode_MULTI_NODE_MULTI_WRITER})
2018-07-14 10:48:22 +02:00
// Create GRPC servers
2023-03-31 23:05:26 +02:00
s3.ids = NewDefaultIdentityServer(s3)
s3.ns = NewNodeServer(s3)
s3.cs = NewControllerServer(s3)
s := NewNonBlockingGRPCServer()
s.Start(s3.endpoint,
s3.ids,
s3.cs,
s3.ns)
2018-07-14 10:48:22 +02:00
s.Wait()
}