mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-10 21:50:05 +00:00
The code originates in csi-test and this copyright change was made by the original author in https://github.com/kubernetes-csi/csi-test/pull/324
91 lines
2.2 KiB
Go
91 lines
2.2 KiB
Go
/*
|
|
Copyright 2021 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 service
|
|
|
|
import (
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
|
"github.com/golang/protobuf/ptypes/wrappers"
|
|
)
|
|
|
|
func (s *service) GetPluginInfo(
|
|
ctx context.Context,
|
|
req *csi.GetPluginInfoRequest) (
|
|
*csi.GetPluginInfoResponse, error) {
|
|
|
|
return &csi.GetPluginInfoResponse{
|
|
Name: s.config.DriverName,
|
|
VendorVersion: VendorVersion,
|
|
Manifest: Manifest,
|
|
}, nil
|
|
}
|
|
|
|
func (s *service) Probe(
|
|
ctx context.Context,
|
|
req *csi.ProbeRequest) (
|
|
*csi.ProbeResponse, error) {
|
|
|
|
return &csi.ProbeResponse{
|
|
Ready: &wrappers.BoolValue{Value: true},
|
|
}, nil
|
|
}
|
|
|
|
func (s *service) GetPluginCapabilities(
|
|
ctx context.Context,
|
|
req *csi.GetPluginCapabilitiesRequest) (
|
|
*csi.GetPluginCapabilitiesResponse, error) {
|
|
|
|
volExpType := csi.PluginCapability_VolumeExpansion_ONLINE
|
|
|
|
if s.config.DisableOnlineExpansion {
|
|
volExpType = csi.PluginCapability_VolumeExpansion_OFFLINE
|
|
}
|
|
|
|
capabilities := []*csi.PluginCapability{
|
|
{
|
|
Type: &csi.PluginCapability_Service_{
|
|
Service: &csi.PluginCapability_Service{
|
|
Type: csi.PluginCapability_Service_CONTROLLER_SERVICE,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
Type: &csi.PluginCapability_VolumeExpansion_{
|
|
VolumeExpansion: &csi.PluginCapability_VolumeExpansion{
|
|
Type: volExpType,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
if s.config.EnableTopology {
|
|
capabilities = append(capabilities,
|
|
&csi.PluginCapability{
|
|
Type: &csi.PluginCapability_Service_{
|
|
Service: &csi.PluginCapability_Service{
|
|
Type: csi.PluginCapability_Service_VOLUME_ACCESSIBILITY_CONSTRAINTS,
|
|
},
|
|
},
|
|
})
|
|
}
|
|
|
|
return &csi.GetPluginCapabilitiesResponse{
|
|
Capabilities: capabilities,
|
|
}, nil
|
|
}
|