Skip to content

Commit

Permalink
Do not reuse pushers for pullers (#1701)
Browse files Browse the repository at this point in the history
This causes issues with broken registry implementations that 403 if you
have requested push scopes even for pull operations.
  • Loading branch information
jonjohnsonjr committed May 16, 2023
1 parent a927d7c commit dbecb1d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 23 deletions.
7 changes: 0 additions & 7 deletions pkg/v1/remote/fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,6 @@ import (
"github.com/google/go-containerregistry/pkg/v1/types"
)

func fetcherFromWriter(w *writer) *fetcher {
return &fetcher{
target: w.repo,
client: w.client,
}
}

// fetcher implements methods for reading from a registry.
type fetcher struct {
target resource
Expand Down
16 changes: 0 additions & 16 deletions pkg/v1/remote/puller.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import (
"context"
"sync"

"github.com/google/go-containerregistry/pkg/logs"
"github.com/google/go-containerregistry/pkg/name"
v1 "github.com/google/go-containerregistry/pkg/v1"
"github.com/google/go-containerregistry/pkg/v1/partial"
Expand Down Expand Up @@ -72,21 +71,6 @@ func (r *reader) init(ctx context.Context) error {
}

func (p *Puller) fetcher(ctx context.Context, target resource) (*fetcher, error) {
// If we are Reuse()ing a Pusher, we want to use that for token handshakes and scopes,
// but we want to do read requests via a fetcher{}.
//
// TODO(jonjohnsonjr): Unify fetcher, writer, and repoWriter.
if p.o.pusher != nil {
if repo, ok := target.(name.Repository); ok {
w, err := p.o.pusher.writer(ctx, repo, p.o)
if err == nil {
return fetcherFromWriter(w.w), nil
}
logs.Debug.Printf("reusing Pusher failed: %v", err)
}
}

// Normal path for NewPuller.
v, _ := p.readers.LoadOrStore(target, &reader{
target: target,
o: p.o,
Expand Down

0 comments on commit dbecb1d

Please sign in to comment.