@@ -22,7 +22,6 @@ var _ = g.Describe("[sig-imageregistry][Serial][Suite:openshift/registry/serial]
22
22
)
23
23
24
24
g .It ("can push a signed image to openshift registry and verify it" , func () {
25
- g .Skip ("disable because containers/image: https://github.com/containers/image/pull/570" )
26
25
g .By ("building a signer image that knows how to sign images" )
27
26
output , err := oc .Run ("create" ).Args ("-f" , signerBuildFixture ).Output ()
28
27
if err != nil {
@@ -83,24 +82,27 @@ var _ = g.Describe("[sig-imageregistry][Serial][Suite:openshift/registry/serial]
83
82
o .Expect (err ).NotTo (o .HaveOccurred ())
84
83
o .Expect (out ).To (o .ContainSubstring ("keyring `/var/lib/origin/gnupg/secring.gpg' created" ))
85
84
86
- // Create kubeconfig for skopeo
85
+ // Create kubeconfig for oc
87
86
g .By ("logging as a test user" )
88
87
out , err = pod .Exec ("oc login https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_SERVICE_PORT --token=" + token + " --certificate-authority=/run/secrets/kubernetes.io/serviceaccount/ca.crt" )
89
88
o .Expect (err ).NotTo (o .HaveOccurred ())
90
89
o .Expect (out ).To (o .ContainSubstring ("Logged in" ))
91
90
92
91
// Sign and copy the memcached image into target image stream tag
93
- // TODO: Fix skopeo to pickup the Kubernetes environment variables (remove the $KUBERNETES_MASTER)
94
92
g .By ("signing the memcached:latest image and pushing it into openshift registry" )
95
93
out , err = pod .Exec (strings .Join ([]string {
96
- "KUBERNETES_MASTER=https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_SERVICE_PORT" ,
97
94
"GNUPGHOME=/var/lib/origin/gnupg" ,
98
- "skopeo" ,
"--debug" ,
"copy" ,
"--sign-by" ,
"[email protected] " ,
95
+ "skopeo" , "--debug" ,
96
+ // Disable the default-docker: file sigstore default in /etc/containers/registries.d, so that the X-Registry-Supports-Signatures protocol is used.
97
+ // Newer versions of Skopeo default to X-R-S-S if present, this test (as of 2020-02) uses skopeo-0.1.40-11.el7_8.x86_64, which defaults to sigstore.
98
+ "--registries.d" , "/this/does/not/exist" ,
99
+
100
+ "copy" ,
"--sign-by" ,
"[email protected] " ,
99
101
"--dest-creds=" + user + ":" + token ,
100
102
// TODO: test with this turned to true as well
101
103
"--dest-tls-verify=false" ,
102
104
"docker://docker.io/library/memcached:latest" ,
103
- "atomic: " + signedImage ,
105
+ "docker:// " + signedImage ,
104
106
}, " " ))
105
107
fmt .Fprintf (g .GinkgoWriter , "output: %s\n " , out )
106
108
o .Expect (err ).NotTo (o .HaveOccurred ())
0 commit comments