-
Notifications
You must be signed in to change notification settings - Fork 75
/
provider.go
49 lines (40 loc) · 1.26 KB
/
provider.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package provider
import (
"context"
"net"
log "github.com/sirupsen/logrus"
"github.com/rexray/gocsi"
"github.com/rexray/gocsi/mock/service"
)
// New returns a new Mock Storage Plug-in Provider.
func New() gocsi.StoragePluginProvider {
svc := service.New()
return &gocsi.StoragePlugin{
Controller: svc,
Identity: svc,
Node: svc,
// BeforeServe allows the SP to participate in the startup
// sequence. This function is invoked directly before the
// gRPC server is created, giving the callback the ability to
// modify the SP's interceptors, server options, or prevent the
// server from starting by returning a non-nil error.
BeforeServe: func(
ctx context.Context,
sp *gocsi.StoragePlugin,
lis net.Listener) error {
log.WithField("service", service.Name).Debug("BeforeServe")
return nil
},
EnvVars: []string{
// Enable serial volume access.
gocsi.EnvVarSerialVolAccess + "=true",
// Enable request and response validation.
gocsi.EnvVarSpecValidation + "=true",
// Treat the following fields as required:
// * ControllerPublishVolumeResponse.PublishContext
// * NodeStageVolumeRequest.PublishContext
// * NodePublishVolumeRequest.PublishContext
gocsi.EnvVarRequirePubContext + "=true",
},
}
}