Remove ImagePull metric in Kubelet.

There is an equivalent metric from our Docker metrics and this one is
harder to maintain with the RuntimeHooks.
This commit is contained in:
Victor Marmol
2015-04-29 13:58:29 -07:00
parent 2a01a2c7e9
commit 090d0c95fa
3 changed files with 5 additions and 13 deletions

View File

@@ -86,7 +86,7 @@ type RuntimeHooks interface {
// Determines whether the runtime should pull the specified container's image.
ShouldPullImage(pod *api.Pod, container *api.Container, imagePresent bool) bool
// Runs after an image is pulled reporting it's status. Error may be nil
// Runs after an image is pulled reporting its status. Error may be nil
// for a successful pull.
ReportImagePull(pod *api.Pod, container *api.Container, err error)
}