Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More docker compat API fixes #8494

Merged
merged 1 commit into from
Dec 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions libpod/image/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -1222,6 +1222,11 @@ func (i *Image) inspect(ctx context.Context, calculateSize bool) (*inspect.Image
}
}

parent, err := i.ParentID(ctx)
if err != nil {
return nil, err
}

repoTags, err := i.RepoTags()
if err != nil {
return nil, err
Expand All @@ -1248,6 +1253,7 @@ func (i *Image) inspect(ctx context.Context, calculateSize bool) (*inspect.Image

data := &inspect.ImageData{
ID: i.ID(),
Parent: parent,
RepoTags: repoTags,
RepoDigests: repoDigests,
Comment: comment,
Expand All @@ -1258,10 +1264,12 @@ func (i *Image) inspect(ctx context.Context, calculateSize bool) (*inspect.Image
Config: &ociv1Img.Config,
Version: info.DockerVersion,
Size: size,
VirtualSize: size,
Annotations: annotations,
Digest: i.Digest(),
Labels: info.Labels,
// This is good enough for now, but has to be
// replaced later with correct calculation logic
VirtualSize: size,
Annotations: annotations,
Digest: i.Digest(),
Labels: info.Labels,
RootFS: &inspect.RootFS{
Type: ociv1Img.RootFS.Type,
Layers: ociv1Img.RootFS.DiffIDs,
Expand Down Expand Up @@ -1505,6 +1513,15 @@ func (i *Image) GetParent(ctx context.Context) (*Image, error) {
return tree.parent(ctx, i)
}

// ParentID returns the image ID of the parent. Return empty string if a parent is not found.
func (i *Image) ParentID(ctx context.Context) (string, error) {
parent, err := i.GetParent(ctx)
if err == nil && parent != nil {
return parent.ID(), nil
}
return "", err
}

// GetChildren returns a list of the imageIDs that depend on the image
func (i *Image) GetChildren(ctx context.Context) ([]string, error) {
children, err := i.getChildren(ctx, true)
Expand Down
57 changes: 18 additions & 39 deletions pkg/api/handlers/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,55 +178,34 @@ type ExecStartConfig struct {
}

func ImageToImageSummary(l *libpodImage.Image) (*entities.ImageSummary, error) {
containers, err := l.Containers()
if err != nil {
return nil, errors.Wrapf(err, "failed to obtain Containers for image %s", l.ID())
}
containerCount := len(containers)

// FIXME: GetParent() panics
// parent, err := l.GetParent(context.TODO())
// if err != nil {
// return nil, errors.Wrapf(err, "failed to obtain ParentID for image %s", l.ID())
// }

labels, err := l.Labels(context.TODO())
imageData, err := l.Inspect(context.TODO())
if err != nil {
return nil, errors.Wrapf(err, "failed to obtain Labels for image %s", l.ID())
return nil, errors.Wrapf(err, "failed to obtain summary for image %s", l.ID())
}

size, err := l.Size(context.TODO())
if err != nil {
return nil, errors.Wrapf(err, "failed to obtain Size for image %s", l.ID())
}

repoTags, err := l.RepoTags()
containers, err := l.Containers()
if err != nil {
return nil, errors.Wrapf(err, "failed to obtain RepoTags for image %s", l.ID())
}

digests := make([]string, len(l.Digests()))
for i, d := range l.Digests() {
digests[i] = string(d)
return nil, errors.Wrapf(err, "failed to obtain Containers for image %s", l.ID())
}
containerCount := len(containers)

is := entities.ImageSummary{
ID: l.ID(),
ParentId: l.Parent,
RepoTags: repoTags,
RepoDigests: digests,
ParentId: imageData.Parent,
RepoTags: imageData.RepoTags,
RepoDigests: imageData.RepoDigests,
Created: l.Created().Unix(),
Size: int64(*size),
Size: imageData.Size,
SharedSize: 0,
VirtualSize: l.VirtualSize,
Labels: labels,
VirtualSize: imageData.VirtualSize,
Labels: imageData.Labels,
Containers: containerCount,
ReadOnly: l.IsReadOnly(),
Dangling: l.Dangling(),
Names: l.Names(),
Digest: string(l.Digest()),
Digest: string(imageData.Digest),
ConfigDigest: string(l.ConfigDigest),
History: l.NamesHistory(),
History: imageData.NamesHistory,
}
return &is, nil
}
Expand Down Expand Up @@ -283,18 +262,18 @@ func ImageDataToImageInspect(ctx context.Context, l *libpodImage.Image) (*ImageI
}
}
dockerImageInspect := docker.ImageInspect{
Architecture: l.Architecture,
Author: l.Author,
Architecture: info.Architecture,
Author: info.Author,
Comment: info.Comment,
Config: &config,
Created: l.Created().Format(time.RFC3339Nano),
DockerVersion: info.Version,
GraphDriver: docker.GraphDriverData{},
ID: fmt.Sprintf("sha256:%s", l.ID()),
Metadata: docker.ImageMetadata{},
Os: l.Os,
OsVersion: l.Version,
Parent: l.Parent,
Os: info.Os,
OsVersion: info.Version,
Parent: info.Parent,
RepoDigests: info.RepoDigests,
RepoTags: info.RepoTags,
RootFS: rootfs,
Expand Down
11 changes: 9 additions & 2 deletions pkg/domain/infra/abi/images_list.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ func (ir *ImageEngine) List(ctx context.Context, opts entities.ImageListOptions)
RepoDigests: digests,
History: img.NamesHistory(),
Names: img.Names(),
ParentId: img.Parent,
ReadOnly: img.IsReadOnly(),
SharedSize: 0,
VirtualSize: img.VirtualSize,
RepoTags: img.Names(), // may include tags and digests
}
e.Labels, err = img.Labels(ctx)
Expand All @@ -60,6 +58,15 @@ func (ir *ImageEngine) List(ctx context.Context, opts entities.ImageListOptions)
return nil, errors.Wrapf(err, "error retrieving size of image %q: you may need to remove the image to resolve the error", img.ID())
}
e.Size = int64(*sz)
// This is good enough for now, but has to be
// replaced later with correct calculation logic
e.VirtualSize = int64(*sz)

parent, err := img.ParentID(ctx)
if err != nil {
return nil, errors.Wrapf(err, "error retrieving parent of image %q: you may need to remove the image to resolve the error", img.ID())
}
e.ParentId = parent

summaries = append(summaries, &e)
}
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ RUN printenv http_proxy`
Expect(session.ExitCode()).To(Equal(0))

// Verify that OS and Arch are being set
inspect := podmanTest.PodmanNoCache([]string{"image", "inspect", "--format", "{{ index .Config.Labels }}", "test"})
inspect := podmanTest.Podman([]string{"image", "inspect", "--format", "{{ index .Config.Labels }}", "test"})
inspect.WaitWithDefaultTimeout()
data := inspect.OutputToString()
Expect(data).To(ContainSubstring(buildah.Version))
Expand Down