Add ControllersExpected to the PluginListStub

This commit is contained in:
Michael Lange 2020-05-07 09:37:51 -07:00
parent a1c198b3e0
commit 1a9631dbfa
1 changed files with 9 additions and 7 deletions

View File

@ -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 {