drop the Registry field in output - images are not fully qualified

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca
2016-01-21 10:31:25 +01:00
parent 6ea444ad5a
commit e1291313aa
4 changed files with 3 additions and 6 deletions

View File

@@ -145,7 +145,7 @@ func (mf *v1ManifestFetcher) fetchWithSession(ctx context.Context, askedTag stri
return nil, fmt.Errorf("No such image %s:%s", mf.repoInfo.FullName(), askedTag)
}
return makeImageInspect(pulledImg, mf.repoInfo.Index.Name, askedTag, "", tagList), nil
return makeImageInspect(pulledImg, askedTag, "", tagList), nil
}
func (mf *v1ManifestFetcher) pullImageJSON(imgID, endpoint string, token []string) (*image.Image, error) {