We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1.1.0-rc.2
I was pushing an empty artifact using the below command and noticed that it took 9 requests to complete.
oras push $myreg/$myrepo:$mytag --debug
The requests were:
request #0: HEAD manifest digest - 401 request #1: POST token (scope: pull) - 200 request #2: HEAD manifest digest - 404 request #3: HEAD config ({}) - 404 request #4: POST config ({}) - 401 request #5: POST token (scope: pull, push) - 200 request #6: POST config ({}) - 202 request #7: PUT config ({}) - 201 request #8: PUT manifest tag - 201
#0
#1
#2
#3
#4
#5
#6
#7
#8
It looks like the auth-related requests #4 and #5 (the one with underlines) can be saved on ORAS side.
This can further improve the performance of ORAS.
The text was updated successfully, but these errors were encountered:
oras manifest delete
oras blob delete
oras cp
Wwwsylvia
Successfully merging a pull request may close this issue.
What is the version of your ORAS CLI
1.1.0-rc.2
What would you like to be added?
I was pushing an empty artifact using the below command and noticed that it took 9 requests to complete.
The requests were:
request
#0
: HEAD manifest digest - 401request
#1
: POST token (scope: pull) - 200request
#2
: HEAD manifest digest - 404request
#3
: HEAD config ({}) - 404request
#4
: POST config ({}) - 401request
#5
: POST token (scope: pull, push) - 200request
#6
: POST config ({}) - 202request
#7
: PUT config ({}) - 201request
#8
: PUT manifest tag - 201It looks like the auth-related requests
#4
and#5
(the one with underlines) can be saved on ORAS side.Why is this needed for ORAS?
This can further improve the performance of ORAS.
Are you willing to submit PRs to contribute to this feature?
The text was updated successfully, but these errors were encountered: