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

ctr: ctr images import --all-platforms: fix unpack #11229

Merged
merged 1 commit into from
Jan 9, 2025

Conversation

AkihiroSuda
Copy link
Member

Fix #11228

ctr images import --all-platforms w/o --local was failing due to unable to initialize unpacker: no unpack platforms defined error.

W/ --local, it unpacks the layers for the strict-default platform.

Now ctr images import --all-platforms w/o --local unpacks the layers for the non-strict default platform.
This behavior still differs from --local.
i.e., on an arm64 host, arm/v{5,6,7} layers are unpacked too.

Fix issue 11228

`ctr images import --all-platforms` w/o `--local` was failing due to
`unable to initialize unpacker: no unpack platforms defined` error.

W/ `--local`, it unpacks the layers for the strict-default platform.

Now `ctr images import --all-platforms` w/o `--local` unpacks the layers
for the non-strict default platform.
This behavior still differs from `--local`.
i.e., on an arm64 host, arm/v{5,6,7} layers are unpacked too.

Signed-off-by: Akihiro Suda <[email protected]>
@AkihiroSuda AkihiroSuda added the cherry-pick/2.0.x Change to be cherry picked to release/2.0 branch label Jan 8, 2025
@dosubot dosubot bot added area/distribution Image Distribution kind/bug labels Jan 8, 2025
@@ -146,33 +145,26 @@ If foobar.tar contains an OCI ref named "latest" and anonymous ref "sha256:deadb
opts = append(opts, image.WithNamedPrefix(prefix, overwrite))
}

var platSpec ocispec.Platform
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(The variable was renamed for clarity)

// for compatibility with --local.
//
// This is still not fully compatible with --local, which only unpacks
// the strict-default platform layers.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(The transfer API should support specifying a strict platform matcher, but it is beyond the scope of this PR)

// Only when all-platforms not specified, we will check platform value
// Implicitly if the platforms is empty, it means all-platforms
// Even with --all-platforms, only the default platform layers are unpacked,
// for compatibility with --local.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(Compatibility is out of the scope of ctr, but we cannot ignore that fact that its compatibility is assumed in kind: kubernetes-sigs/kind#3828)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How was this expected to work? I don't assume ctr remains 100% compatible but it's not clear how you would use --all-platforms (Is the expectation that you would have to opt out of the transfer API to use --all-platforms?)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All platforms for unpack has to be resolved in this case on the transfer side and I think we are missing an ability to express the intent to "unpack all platforms whatever those platforms may be" (which maybe we don't actually want anyway).

It's pretty hard to get the permutation of options working as expected and especially for cases we may not explicitly want to support, thats one of the reason we don't guarantee anything in ctr because we want that expressiveness without any promises it will always work.

I think just having it keep the original --local behavior is fine, we should still consider the expressiveness in the API but I doubt unpack everything is often what a caller wants.

@kzys kzys added this pull request to the merge queue Jan 9, 2025
Merged via the queue into containerd:main with commit b854e8f Jan 9, 2025
58 checks passed
@AkihiroSuda
Copy link
Member Author

/cherry-pick release/2.0

@k8s-infra-cherrypick-robot

@AkihiroSuda: new pull request created: #11236

In response to this:

/cherry-pick release/2.0

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/distribution Image Distribution cherry-pick/2.0.x Change to be cherry picked to release/2.0 branch kind/bug size/S
Projects
None yet
6 participants