-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
OCI Image Updater use-case #33285
Comments
Thank you for your feedback. Tagging and routing to the team member best able to assist. |
Thanks for your question, @weeshal!
The library does support anonymous access. It also supports authentication via AAD, as described here. Would this be sufficient for your purposes? |
Hey Anne, yes that was sufficient in terms of authentication. However, wanted to follow up on downloading larger blobs - the single Any suggestions on this? |
Hi @weeshal, I'm glad to hear you were able to authenticate and call DownloadBlob! This is a known issue with large blobs, and the resolution is being tracked by #32414. The fix will not release in beta 5, but we intend it to come in one of the following betas. If this is your remaining outstanding issue, may I close this issue and have you follow that one instead? |
Sounds good to me. Thank you! |
While on the subject, I noticed that the digest received from the manifest directly was not the one that referred to the actual image itself. It required drilling into the first (and in our case, only) layer, and using the digest within the |
Thanks @weeshal!
Great, I'm closing this issue in response to this.
Interesting! I'm curious to learn more and help solve this. Would you be willing to file a new issue (so the title reflects the issue) with a repro description? Many thanks! |
@weeshal, I am wondering if this PR will address the issue you've described in this comment. |
Library name
Azure.Containers.ContainerRegistry
Please describe the feature.
We would like to use the azure sdk to automate our container deployment process. At a specified cadence, an agent running on an edge machine would pull the latest artifacts from an Azure Container Registry and load that image onto the machine. The registry is not configured for anonymous access - our workflow currently is to utilize a pull-token to authenticate the download. We would ideally retrieve the token password through an Azure KeyVault SecretClient and use it to pull the desired image. Specifically, we would like to call
DownloadBlobAsync
.Based on my understanding, the current SDK only supports anonymous access operations, but I would like to inquire about any potential plans to support authentication through a token/password.
The text was updated successfully, but these errors were encountered: