Skip to content

Commit 3dafdd0

Browse files
author
Michal Minář
committed
extended: fixed registry tests
The extended test suite now secures the registry. This patch allows for secure connection to the registry. Signed-off-by: Michal Minář <[email protected]>
1 parent 86abb1f commit 3dafdd0

File tree

2 files changed

+30
-12
lines changed

2 files changed

+30
-12
lines changed

test/extended/images/helper.go

+28-10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package images
33
import (
44
"bytes"
55
cryptorand "crypto/rand"
6+
"crypto/tls"
67
"fmt"
78
"io"
89
"io/ioutil"
@@ -21,6 +22,7 @@ import (
2122

2223
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2324
kerrors "k8s.io/apimachinery/pkg/util/errors"
25+
knet "k8s.io/apimachinery/pkg/util/net"
2426
"k8s.io/apimachinery/pkg/util/sets"
2527
"k8s.io/apimachinery/pkg/util/wait"
2628
"k8s.io/kubernetes/pkg/client/retry"
@@ -517,20 +519,36 @@ func MirrorBlobInRegistry(oc *exutil.CLI, dgst digest.Digest, repository string,
517519
if err != nil {
518520
return err
519521
}
520-
req, err := http.NewRequest("GET", fmt.Sprintf("http://%s/v2/%s/blobs/%s", registryURL, repository, dgst.String()), nil)
521-
if err != nil {
522-
return err
523-
}
524522
token, err := oc.Run("whoami").Args("-t").Output()
525523
if err != nil {
526524
return err
527525
}
528-
req.Header.Set("range", "bytes=0-1")
529-
req.Header.Set("Authorization", "Bearer "+token)
530-
c := http.Client{}
531-
resp, err := c.Do(req)
532-
if err != nil {
533-
return err
526+
527+
var (
528+
req *http.Request
529+
resp *http.Response
530+
getErr error
531+
)
532+
for _, schema := range []string{"https", "http"} {
533+
req, err = http.NewRequest("GET", fmt.Sprintf("%s://%s/v2/%s/blobs/%s", schema, registryURL, repository, dgst.String()), nil)
534+
if err != nil {
535+
return err
536+
}
537+
req.Header.Set("range", "bytes=0-1")
538+
req.Header.Set("Authorization", "Bearer "+token)
539+
c := http.Client{
540+
Transport: knet.SetTransportDefaults(&http.Transport{
541+
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
542+
}),
543+
}
544+
resp, getErr = c.Do(req)
545+
if getErr == nil {
546+
break
547+
}
548+
fmt.Fprintf(g.GinkgoWriter, "failed to %s %s: %v (%#+v)\n", req.Method, req.URL, err, err)
549+
}
550+
if getErr != nil {
551+
return getErr
534552
}
535553
defer resp.Body.Close()
536554

test/extended/util/cli.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ func (c *CLI) SetNamespace(ns string) *CLI {
134134
}
135135

136136
// WithoutNamespace instructs the command should be invoked without adding --namespace parameter
137-
func (c *CLI) WithoutNamespace() *CLI {
137+
func (c CLI) WithoutNamespace() *CLI {
138138
c.withoutNamespace = true
139-
return c
139+
return &c
140140
}
141141

142142
// SetOutputDir change the default output directory for temporary files

0 commit comments

Comments
 (0)