Expose image list in node status

Change image manager to use repotag
This commit is contained in:
harry zhang
2015-12-02 16:53:56 +08:00
committed by harry
parent 66d3cbf889
commit 27ca7dc71e
11 changed files with 134 additions and 19 deletions

View File

@@ -75,9 +75,9 @@ func TestToRuntimeImage(t *testing.T) {
VirtualSize: 1234,
}
expected := &kubecontainer.Image{
ID: "aeeea",
Tags: []string{"abc", "def"},
Size: 1234,
ID: "aeeea",
RepoTags: []string{"abc", "def"},
Size: 1234,
}
actual, err := toRuntimeImage(original)