From e9a183689acf2a41104a5b68974231bf92996201 Mon Sep 17 00:00:00 2001 From: Terry Howe Date: Thu, 19 Jun 2025 19:42:45 -0600 Subject: [PATCH] fix: force bearer oauth for everything Signed-off-by: Terry Howe --- pkg/registry/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/registry/client.go b/pkg/registry/client.go index 8818f5763..c185a81a7 100644 --- a/pkg/registry/client.go +++ b/pkg/registry/client.go @@ -156,6 +156,7 @@ func NewClient(options ...ClientOption) (*Client, error) { authorizer.Cache = auth.NewCache() } + authorizer.ForceAttemptOAuth2 = true client.authorizer = &authorizer }