Add ControllersExpected to the PluginListStub
This commit is contained in:
parent
a1c198b3e0
commit
1a9631dbfa
16
api/csi.go
16
api/csi.go
|
@ -198,13 +198,15 @@ type CSIPlugin struct {
|
|||
Version string
|
||||
ControllerRequired bool
|
||||
// Map Node.ID to CSIInfo fingerprint results
|
||||
Controllers map[string]*CSIInfo
|
||||
Nodes map[string]*CSIInfo
|
||||
Allocations []*AllocationListStub
|
||||
ControllersHealthy int
|
||||
NodesHealthy int
|
||||
CreateIndex uint64
|
||||
ModifyIndex uint64
|
||||
Controllers map[string]*CSIInfo
|
||||
Nodes map[string]*CSIInfo
|
||||
Allocations []*AllocationListStub
|
||||
ControllersHealthy int
|
||||
ControllersExpected int
|
||||
NodesHealthy int
|
||||
NodesExpected int
|
||||
CreateIndex uint64
|
||||
ModifyIndex uint64
|
||||
}
|
||||
|
||||
type CSIPluginListStub struct {
|
||||
|
|
Loading…
Reference in New Issue