Skip to content
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

Only apply rewrites to mirror endpoints #29

Merged
merged 1 commit into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions pkg/registries/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ func (e endpoint) RoundTrip(req *http.Request) (*http.Response, error) {
return e.registry.getTransport(req.URL).RoundTrip(req)
}

// isDefault returns true if this endpoint is the default endpoint for the image -
// does the registry namespace match the mirror endpoint namespace?
func (e endpoint) isDefault() bool {
return getNamespace(e.ref.Context().RegistryStr()) == getNamespace(e.url.Host)
}

func getNamespace(host string) string {
if host == defaultRegistryHost {
return defaultRegistry
Expand Down
88 changes: 88 additions & 0 deletions pkg/registries/endpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,92 @@ import (

const localhost = "127-0-0-1.sslip.io"

func TestImage(t *testing.T) {
logrus.SetLevel(logrus.DebugLevel)

imageTests := map[string]struct {
images []string
rewrites map[string]string
}{
"Pull busybox without rewrite on default endpoint": {
images: []string{
"library/busybox:latest",
},
rewrites: map[string]string{
"^library/(.*)": "bogus-image-prefix/$1",
},
},
}

for testName, test := range imageTests {
t.Run(testName, func(t *testing.T) {
rs, as, mux := newServers(t, "127.0.0.1:443", true, true, true)
defer rs.Close()
defer as.Close()

regHost, regEndpoint := getHostEndpoint(rs.Listener.Addr().String(), true, false)
authHost, authEndpoint := getHostEndpoint(as.Listener.Addr().String(), true, false)

t.Logf("INFO: %s registry %s at %s, auth %s at %s, scheme %q", t.Name(), regHost, regEndpoint, authHost, authEndpoint, "Basic")

mux.Handle("/v2/", serveRegistry(t, "Basic", authEndpoint+"/auth"))
mux.Handle("/auth/", serveAuth(t))

r := &registry{
DefaultKeychain: authn.DefaultKeychain,
Registry: &Registry{
Mirrors: map[string]Mirror{
regHost: Mirror{
Endpoints: []string{regHost + ":443"},
Rewrites: test.rewrites,
},
},
Configs: map[string]RegistryConfig{
regHost: RegistryConfig{
Auth: &AuthConfig{Username: "user", Password: "pass"},
TLS: &TLSConfig{InsecureSkipVerify: true},
},
regHost + ":443": RegistryConfig{
Auth: &AuthConfig{Username: "user", Password: "pass"},
TLS: &TLSConfig{InsecureSkipVerify: true},
},
},
},
transports: map[string]*http.Transport{},
}

for _, refStr := range test.images {
t.Run(refStr, func(t *testing.T) {
ref, err := name.ParseReference(regHost + "/" + refStr)
if err != nil {
t.Fatalf("FATAL: Failed to parse reference: %v", err)
}

// Target the only supported dummy platform, regardless of what we're running on
image, err := r.Image(ref, remote.WithPlatform(v1.Platform{Architecture: "amd64", OS: "linux"}))
if err != nil {
t.Fatalf("FATAL: Failed to get image: %v", err)
}

// confirm that we can get the manifest
_, err = image.Manifest()
if err != nil {
t.Fatalf("FATAL: Failed to get manifest: %v", err)
}

// confirm that we can get the config file
_, err = image.ConfigFile()
if err != nil {
t.Fatalf("FATAL: Failed to get config file: %v", err)
}

t.Logf("OK: %s", ref)
})
}
})
}
}

func TestEndpoint(t *testing.T) {
logrus.SetLevel(logrus.DebugLevel)

Expand Down Expand Up @@ -156,6 +242,8 @@ func TestEndpoint(t *testing.T) {
if err != nil {
t.Fatalf("FATAL: Failed to get config file: %v", err)
}

t.Logf("OK: %s", ref)
})
}
})
Expand Down
8 changes: 6 additions & 2 deletions pkg/registries/registries.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,20 @@ func GetPrivateRegistries(path string) (*registry, error) {
}

func (r *registry) Image(ref name.Reference, options ...remote.Option) (v1.Image, error) {
ref = r.rewrite(ref)
endpoints, err := r.getEndpoints(ref)
if err != nil {
return nil, err
}

errs := []error{}
for _, endpoint := range endpoints {
epRef := ref
if !endpoint.isDefault() {
epRef = r.rewrite(ref)
}
logrus.Debugf("Trying endpoint %s", endpoint.url)
endpointOptions := append(options, remote.WithTransport(endpoint), remote.WithAuthFromKeychain(endpoint))
remoteImage, err := remote.Image(ref, endpointOptions...)
remoteImage, err := remote.Image(epRef, endpointOptions...)
if err != nil {
logrus.Warnf("Failed to get image from endpoint: %v", err)
errs = append(errs, err)
Expand Down