File tree Expand file tree Collapse file tree 6 files changed +8460
-4440
lines changed
github.com/container-storage-interface/spec/lib/go/csi Expand file tree Collapse file tree 6 files changed +8460
-4440
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/kubernetes-csi/csi-driver-host-path
3
3
go 1.21
4
4
5
5
require (
6
- github.com/container-storage-interface/spec v1.9 .0
6
+ github.com/container-storage-interface/spec v1.10 .0
7
7
github.com/golang/protobuf v1.5.4
8
8
github.com/kubernetes-csi/csi-lib-utils v0.17.0
9
9
github.com/pborman/uuid v1.2.1
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM
4
4
github.com/blang/semver/v4 v4.0.0 /go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ =
5
5
github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44 =
6
6
github.com/cespare/xxhash/v2 v2.2.0 /go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs =
7
- github.com/container-storage-interface/spec v1.9 .0 h1:zKtX4STsq31Knz3gciCYCi1SXtO2HJDecIjDVboYavY =
8
- github.com/container-storage-interface/spec v1.9 .0 /go.mod h1:ZfDu+3ZRyeVqxZM0Ds19MVLkN2d1XJ5MAfi1L3VjlT0 =
7
+ github.com/container-storage-interface/spec v1.10 .0 h1:YkzWPV39x+ZMTa6Ax2czJLLwpryrQ+dPesB34mrRMXA =
8
+ github.com/container-storage-interface/spec v1.10 .0 /go.mod h1:DtUvaQszPml1YJfIK7c00mlv6/g4wNMLanLgiUbKFRI =
9
9
github.com/creack/pty v1.1.9 /go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E =
10
10
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
11
11
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ import (
25
25
"path/filepath"
26
26
"sync"
27
27
28
+ "github.com/container-storage-interface/spec/lib/go/csi"
28
29
"google.golang.org/grpc/codes"
29
30
"google.golang.org/grpc/status"
30
31
"k8s.io/apimachinery/pkg/api/resource"
@@ -49,6 +50,10 @@ const (
49
50
)
50
51
51
52
type hostPath struct {
53
+ csi.UnimplementedIdentityServer
54
+ csi.UnimplementedControllerServer
55
+ csi.UnimplementedNodeServer
56
+ csi.UnimplementedGroupControllerServer
52
57
config Config
53
58
54
59
// gRPC calls involving any of the fields below must be serialized
You can’t perform that action at this time.
0 commit comments