Merge pull request #7886 from hashicorp/f/csi-missing-prop-for-plugin-list

Add ControllersExpected to the PluginListStub
This commit is contained in:
Michael Lange
2020-05-07 10:39:58 -07:00
committed by GitHub

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 {