Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/helm/registry/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func ClientGenerator(tlsConfig *tls.Config, isLogin, insecureHTTP bool) (*regist
}

var errs []error
rClient, err := newClient(credentialsFile.Name(), tlsConfig, insecureHTTP)
rClient, err := newClient("", tlsConfig, insecureHTTP)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The controller is still in oras v1 so this won't work

if err != nil {
errs = append(errs, err)
// attempt to delete the temporary file
Expand Down