Merge pull request #5030 from simon3z/nodeinfo

Add support for fetching node collected information
This commit is contained in:
Brian Grant
2015-03-10 14:05:41 -07:00
15 changed files with 220 additions and 40 deletions

View File

@@ -97,6 +97,10 @@ func (fakeKubeletClient) GetPodStatus(host, podNamespace, podID string) (api.Pod
return r, nil
}
func (fakeKubeletClient) GetNodeInfo(host string) (api.NodeInfo, error) {
return api.NodeInfo{}, nil
}
func (fakeKubeletClient) HealthCheck(host string) (probe.Result, error) {
return probe.Success, nil
}