-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
fix(oci): dont use preparing client for docker authorizer #7196
base: main
Are you sure you want to change the base?
Conversation
d7410c9
to
f7c2022
Compare
Signed-off-by: Nico Braun <[email protected]>
f7c2022
to
8255a34
Compare
client: client, | ||
logger: logger, | ||
header := make(http.Header) | ||
if b := config.Credentials.Bearer; b != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How many of the auth plugins had been supported before? With this change, we go back to only supporting bearer creds as auth mechanism, don't we?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as far as I understand, this would drop mtls authentication, since azure
managed identity is not supported for OCI. Or is tls even covered
by constructing the tls config? Is this maybe also an issue on redirect?
Personally, I would add another auth type that maps closely to the options
provides by containerd.docker package. Registry protocols are kind of
specific, and I don't think you can cover it with some more simple, generic
auth plugin.
So either we need to make the auth plugins alot more complex for all users,
or we just create a registry specific one, that can deal with the quirky,
protocols.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is where @DerGut introduced the feature. It also mentions s3_signing
for talking to AWS.
I'd like to avoid throwing the baby out with the bathwater 😉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this github ui terrible. I don't know understand what all the
buttons are suppossed to do. I keep deleting my comments
by accident, sorry.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi all, as @bluebrown mentioned the registry protocols are quite specific so maybe keeping it simple makes more sense. The addition of the plugins seems to have complicated the behavior of the OCI downloader and is currently causing issues with some registries (AWS and Azure ) because of the underlying redirect mechanism.
Would changing the plugin authorizer used in the OCI downloader to not attach the authorization header on a redirect make sense in this scenario ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@carabasdaniel, to my understanding, this should solve the problem.
Based on my research, there is nothing in the HTTP spec that says if/when
credentials should be sent during redirect.
However, there is the www-authenticate
header, that is used by some
implementations, including containerd.
They maintain a handler map, to know what endpoints should get auth
header. One criterion for adding a URL to the map, is www-authenticate
.
You can see this roughly here:
https://github.com/containerd/containerd/blob/88bf19b2105c8b17560993bee28a01ddc2f97182/remotes/docker/authorizer.go#L114
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @bluebrown, @srenatus sorry for the late reply I grabbed this change on top of latest main and I was testing this change with different OCI registries.
Public registries seem to work as expected, however when testing against some private registries I seem to hit the same problem that the CI shows. Basically the client created by rest.DefaultRoundTripperClient(tc, *config.ResponseHeaderTimeoutSeconds)
doesn't have the necessary credentials and it fails to get the manifest of a private image returning a 401.
You can use docker to spin up a local private registry to repro this issue or rely on the tests to easily debug. Please let me know if you need more details about this.
In the CNCF policy CLI project used to build and push policy images to different OCI registries we use the oci package from here to solve this issue https://github.com/opcr-io/policy/blob/main/oci/oci.go
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah sorry, I meant this as answer to your question:
Would changing the plugin authorizer used in the OCI downloader to not attach the authorization header on a redirect make sense in this scenario ?
We also found some code that would not add the headers on redirect if the hostname changes.
fix: #7189