-
Notifications
You must be signed in to change notification settings - Fork 181
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
Can pull referrer with oras pull without knowing the digest #834
Comments
👍 Sounds like a counterpart of |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 30 days. |
Any news about this issue? |
@shizhMSFT @FeynmanZhou @sajayantony for planning |
The |
@SamirPS You might be interested in opencontainers/image-spec#1020, especially the following diagram: graph TD;
sboms-->lsbom;
sboms-.->index;
sboms-->wsbom;
lsbom[sbom]-.->linux;
index-->linux;
index-->windows;
wsbom[sbom]-.->windows;
|
@sajayantony Currently, we don't have a standard to create the |
What is the version of your ORAS CLI
Version: 1.0.0-rc.1+unreleased Go version: go1.20 Git commit: 8bda262 Git tree state: clean
What would you like to be added?
For example, if I take this multi-arch image and copy it to azure
I now have an artefact named one.json. I attach it to the amd64 platform with this command, for example:
Now if I do
I will have 0 artefacts discovered, but if I do
Oras will find the one.json artefact with this digest sha256:digestofsbom. These two outputs are excepted.
Now if I do:
It will say downloaded empty artefacts. But if I do
It downloads the one.json artefact.
What @SteveLasker and I proposed is to add this command, for example, to pull the artefacts:
Why is this needed for ORAS?
Some people will use Oras without knowing anything about digest or manifest. It will permit to have for them a great user experience. Also, if I attached multiple files to the amd64 ( sbom, license,...), it's great to be able to download all files with a single command and not need to get the digest for each file.
Are you willing to submit PRs to contribute to this feature?
The text was updated successfully, but these errors were encountered: