Skip to content

Commit 3495a41

Browse files
Merge pull request openshift#25863 from soltysh/fix_registry
Change registry.svc.ci.openshift.org to registry.ci.openshift.org
2 parents f270749 + 7e7e73f commit 3495a41

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ include $(addprefix ./vendor/github.com/openshift/build-machinery-go/make/, \
99
targets/openshift/deps.mk \
1010
)
1111

12-
IMAGE_REGISTRY :=registry.svc.ci.openshift.org
12+
IMAGE_REGISTRY :=registry.ci.openshift.org
1313

1414
# This will call a macro called "build-image" which will generate image specific targets based on the parameters:
1515
# $0 - macro name

test/extended/builds/s2i_root.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var _ = g.Describe("[sig-builds][Feature:Builds] s2i build with a root user imag
3737
Before(oc)
3838
defer After(oc)
3939

40-
firstArgString := fmt.Sprintf("%s~https://github.com/sclorg/nodejs-ex", image.LocationFor("registry.svc.ci.openshift.org/ocp/4.7:test-build-roots2i"))
40+
firstArgString := fmt.Sprintf("%s~https://github.com/sclorg/nodejs-ex", image.LocationFor("registry.ci.openshift.org/ocp/4.7:test-build-roots2i"))
4141
err := oc.Run("new-app").Args(firstArgString, "--name", "nodejsfail").Execute()
4242
o.Expect(err).NotTo(o.HaveOccurred())
4343

@@ -114,7 +114,7 @@ var _ = g.Describe("[sig-builds][Feature:Builds] s2i build with a root user imag
114114
roleBinding, err = oc.AdminKubeClient().RbacV1().RoleBindings(oc.Namespace()).Create(context.Background(), roleBinding, metav1.CreateOptions{})
115115
o.Expect(err).NotTo(o.HaveOccurred())
116116

117-
firstArgString := fmt.Sprintf("%s~https://github.com/sclorg/nodejs-ex", image.LocationFor("registry.svc.ci.openshift.org/ocp/4.7:test-build-roots2i"))
117+
firstArgString := fmt.Sprintf("%s~https://github.com/sclorg/nodejs-ex", image.LocationFor("registry.ci.openshift.org/ocp/4.7:test-build-roots2i"))
118118
err = oc.Run("new-build").Args(firstArgString, "--name", "nodejspass").Execute()
119119
o.Expect(err).NotTo(o.HaveOccurred())
120120

test/extended/util/image/image.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func init() {
2222

2323
// used by build s2i e2e's to verify that builder with USER root are not allowed
2424
// the github.com/openshift/build-test-images repo is built out of github.com/openshift/release
25-
"registry.svc.ci.openshift.org/ocp/4.7:test-build-roots2i": -1,
25+
"registry.ci.openshift.org/ocp/4.7:test-build-roots2i": -1,
2626

2727
// moved to GCR
2828
"k8s.gcr.io/sig-storage/csi-attacher:v2.2.0": -1,

test/extended/util/image/zz_generated.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ k8s.gcr.io/sig-storage/livenessprobe:v1.1.0 quay.io/openshift/community-e2e-imag
5151
k8s.gcr.io/sig-storage/mock-driver:v4.0.2 quay.io/openshift/community-e2e-images:e2e-k8s-gcr-io-sig-storage-mock-driver-v4-0-2-GE9vfPm7mdvjzZh_
5252
k8s.gcr.io/sig-storage/nfs-provisioner:v2.2.2 quay.io/openshift/community-e2e-images:e2e-22-k8s-gcr-io-sig-storage-nfs-provisioner-v2-2-2-dbgtOCwYmEGggl01
5353
k8s.gcr.io/sig-storage/snapshot-controller:v2.1.1 quay.io/openshift/community-e2e-images:e2e-k8s-gcr-io-sig-storage-snapshot-controller-v2-1-1-n5BM_jX2npV3RxHM
54-
registry.svc.ci.openshift.org/ocp/4.7:test-build-roots2i quay.io/openshift/community-e2e-images:e2e-registry-svc-ci-openshift-org-ocp-4-7-test-build-roots2i-ZzDWhWn0wPB9cLFM
54+
registry.ci.openshift.org/ocp/4.7:test-build-roots2i quay.io/openshift/community-e2e-images:e2e-registry-ci-openshift-org-ocp-4-7-test-build-roots2i-tG08qb6aSmDhxBBy

0 commit comments

Comments
 (0)