VolumeHost.GetNodeName method added for CSI fix

This commit is contained in:
Vladimir Vivien
2017-12-01 00:17:13 -05:00
parent 8c1ee761d2
commit 7405159558
6 changed files with 30 additions and 0 deletions

View File

@@ -277,3 +277,7 @@ func (expc *expandController) GetConfigMapFunc() func(namespace, name string) (*
func (expc *expandController) GetNodeLabels() (map[string]string, error) {
return nil, fmt.Errorf("GetNodeLabels unsupported in expandController")
}
func (expc *expandController) GetNodeName() types.NodeName {
return ""
}