Skip to content

Commit 720b931

Browse files
committed
Fix and re-enable test/extended/images/signatures.go
- Use docker:// instead of atomic:, as recommended back in openshift#21782 (comment) openshift#21782 (comment) - Then re-enable the test Signed-off-by: Miloslav Trmač <[email protected]>
1 parent 3495a41 commit 720b931

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

test/extended/images/signatures.go

+2-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ var _ = g.Describe("[sig-imageregistry][Serial][Suite:openshift/registry/serial]
2222
)
2323

2424
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")
2625
g.By("building a signer image that knows how to sign images")
2726
output, err := oc.Run("create").Args("-f", signerBuildFixture).Output()
2827
if err != nil {
@@ -83,24 +82,22 @@ var _ = g.Describe("[sig-imageregistry][Serial][Suite:openshift/registry/serial]
8382
o.Expect(err).NotTo(o.HaveOccurred())
8483
o.Expect(out).To(o.ContainSubstring("keyring `/var/lib/origin/gnupg/secring.gpg' created"))
8584

86-
// Create kubeconfig for skopeo
85+
// Create kubeconfig for oc
8786
g.By("logging as a test user")
8887
out, err = pod.Exec("oc login https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_SERVICE_PORT --token=" + token + " --certificate-authority=/run/secrets/kubernetes.io/serviceaccount/ca.crt")
8988
o.Expect(err).NotTo(o.HaveOccurred())
9089
o.Expect(out).To(o.ContainSubstring("Logged in"))
9190

9291
// 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)
9492
g.By("signing the memcached:latest image and pushing it into openshift registry")
9593
out, err = pod.Exec(strings.Join([]string{
96-
"KUBERNETES_MASTER=https://$KUBERNETES_SERVICE_HOST:$KUBERNETES_SERVICE_PORT",
9794
"GNUPGHOME=/var/lib/origin/gnupg",
9895
"skopeo", "--debug", "copy", "--sign-by", "[email protected]",
9996
"--dest-creds=" + user + ":" + token,
10097
// TODO: test with this turned to true as well
10198
"--dest-tls-verify=false",
10299
"docker://docker.io/library/memcached:latest",
103-
"atomic:" + signedImage,
100+
"docker://" + signedImage,
104101
}, " "))
105102
fmt.Fprintf(g.GinkgoWriter, "output: %s\n", out)
106103
o.Expect(err).NotTo(o.HaveOccurred())

0 commit comments

Comments
 (0)