Skip to content

Commit 8c00970

Browse files
FORK: allow bucket root query strings in minio
Signed-off-by: Mathew Wicks <5735406+thesuperzapper@users.noreply.github.com>
1 parent 3d95f8d commit 8c00970

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

backend/src/v2/objectstore/object_store.go

+8
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,14 @@ func OpenBucket(ctx context.Context, k8sClient kubernetes.Interface, namespace s
5151
}
5252
}()
5353
if config.Scheme == "minio://" {
54+
// if a query string is set, change schema to `s3://` and open the bucket directly
55+
// they are probably using: https://gocloud.dev/howto/blob/#s3-compatible
56+
if len(config.QueryString) > 0 {
57+
bucketURL := config.bucketURL()
58+
bucketURL = strings.Replace(bucketURL, "minio://", "s3://", 1)
59+
return blob.OpenBucket(ctx, bucketURL)
60+
}
61+
5462
cred, err := getMinioCredential(ctx, k8sClient, namespace)
5563
if err != nil {
5664
return nil, fmt.Errorf("Failed to get minio credential: %w", err)

0 commit comments

Comments
 (0)