-
Notifications
You must be signed in to change notification settings - Fork 59
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
K8SPG-728: Configure s3 to support minio for extensions #1034
base: main
Are you sure you want to change the base?
Conversation
|
|
commit: 3e6b405 |
@ali3bdalla thank you for your contribution. I don't think these changes are enough, because newly added fields won't be used ever. We need to do the following:
|
cfg := aws.NewConfig().WithRegion(region) | ||
|
||
if(uriStyle == "path") { |
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.
if(uriStyle == "path") { | |
if uriStyle == "path" { |
CHANGE DESCRIPTION
Problem:
Extensions storage was not compatible with MinIO due to incorrect S3 configuration.
Cause:
The S3 client did not force path-style addressing, and SSL verification issues were preventing proper connections to the MinIO instance.
Solution:
Updated S3 configuration to support MinIO by enabling path-style addressing and allowing optional TLS verification settings..
CHECKLIST
Config/Logging/Testability