Skip to content

Commit 8f511a8

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 8f511a8

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

test/extended/images/signatures.go

+8-6
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,27 @@ 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",
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]",
99101
"--dest-creds=" + user + ":" + token,
100102
// TODO: test with this turned to true as well
101103
"--dest-tls-verify=false",
102104
"docker://docker.io/library/memcached:latest",
103-
"atomic:" + signedImage,
105+
"docker://" + signedImage,
104106
}, " "))
105107
fmt.Fprintf(g.GinkgoWriter, "output: %s\n", out)
106108
o.Expect(err).NotTo(o.HaveOccurred())

0 commit comments

Comments
 (0)