Skip to content

Commit a8d4d53

Browse files
Merge pull request #496 from wking/ci-registry-rename
*: Replace registry.svc.ci.openshift.org with registry.ci.openshift.org
2 parents efde32d + 0c2dc53 commit a8d4d53

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM registry.svc.ci.openshift.org/openshift/release:golang-1.15 AS builder
1+
FROM registry.ci.openshift.org/openshift/release:golang-1.15 AS builder
22
WORKDIR /go/src/github.com/openshift/cluster-version-operator
33
COPY . .
44
RUN hack/build-go.sh; \
55
mkdir -p /tmp/build; \
66
cp _output/linux/$(go env GOARCH)/cluster-version-operator /tmp/build/cluster-version-operator
77

8-
FROM registry.svc.ci.openshift.org/openshift/origin-v4.0:base
8+
FROM registry.ci.openshift.org/openshift/origin-v4.0:base
99
COPY --from=builder /tmp/build/cluster-version-operator /usr/bin/
1010
COPY install /manifests
1111
COPY vendor/github.com/openshift/api/config/v1/0000_00_cluster-version-operator_01_clusterversion.crd.yaml /manifests/

Dockerfile.rhel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7 AS builder
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7 AS builder
22
WORKDIR /go/src/github.com/openshift/cluster-version-operator
33
COPY . .
44
RUN hack/build-go.sh; \
55
mkdir -p /tmp/build; \
66
cp _output/linux/$(go env GOARCH)/cluster-version-operator /tmp/build/cluster-version-operator
77

8-
FROM registry.svc.ci.openshift.org/ocp/4.7:base
8+
FROM registry.ci.openshift.org/ocp/4.7:base
99
COPY --from=builder /tmp/build/cluster-version-operator /usr/bin/
1010
COPY install /manifests
1111
COPY vendor/github.com/openshift/api/config/v1/0000_00_cluster-version-operator_01_clusterversion.crd.yaml /manifests/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ podman run --rm -ti \
4242
--release-image="<release image>"
4343
```
4444

45-
`<release image>` can be personal release image generated using [this](#building-release-image-using-local-cvo) or Origin's release image like `registry.svc.ci.openshift.org/openshift/origin-release:v4.0`.
45+
`<release image>` can be personal release image generated using [this](#building-release-image-using-local-cvo) or Origin's release image like `registry.ci.openshift.org/openshift/origin-release:v4.0`.
4646

4747
## Running CVO tests
4848

docs/dev/clusterversion.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ You can extract the current update image from the `ClusterVersion` object:
99

1010
```console
1111
$ oc get clusterversion -o jsonpath='{.status.desired.image}{"\n"}' version
12-
registry.svc.ci.openshift.org/openshift/origin-release@sha256:c1f11884c72458ffe91708a4f85283d591b42483c2325c3d379c3d32c6ac6833
12+
registry.ci.openshift.org/openshift/origin-release@sha256:c1f11884c72458ffe91708a4f85283d591b42483c2325c3d379c3d32c6ac6833
1313
```
1414

1515
## Setting objects unmanaged
@@ -18,7 +18,7 @@ For testing operators, it is sometimes helpful to disable CVO management so you
1818
To get a list of objects managed by the CVO, run:
1919

2020
```console
21-
$ oc adm release extract --from=registry.svc.ci.openshift.org/openshift/origin-release@sha256:c1f11884c72458ffe91708a4f85283d591b42483c2325c3d379c3d32c6ac6833 --to=release-image
21+
$ oc adm release extract --from=registry.ci.openshift.org/openshift/origin-release@sha256:c1f11884c72458ffe91708a4f85283d591b42483c2325c3d379c3d32c6ac6833 --to=release-image
2222
$ ls release-image | head -n5
2323
0000_07_cluster-network-operator_00_namespace.yaml
2424
0000_07_cluster-network-operator_01_crd.yaml

docs/dev/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ spec:
152152
The release tooling will read image-references and do the following operations:
153153
154154
Verify that the tags `ingress-operator` and `haproxy-router` exist from the release / CI tooling (in the image stream `openshift/origin-v4.0` on api.ci). If they don’t exist, you’ll get a build error.
155-
Do a find and replace in your manifests (effectively a sed) that replaces `quay.io/openshift/origin-haproxy-router(:.*|@:.*)` with `registry.svc.ci.openshift.org/openshift/origin-v4.0@sha256:<latest SHA for :haproxy-router>`
155+
Do a find and replace in your manifests (effectively a sed) that replaces `quay.io/openshift/origin-haproxy-router(:.*|@:.*)` with `registry.ci.openshift.org/openshift/origin-v4.0@sha256:<latest SHA for :haproxy-router>`
156156
Store the fact that operator ingress-operator uses both of those images in a metadata file alongside the manifests
157157
Bundle up your manifests and the metadata file as a docker image and push them to a registry
158158

docs/user/reconciliation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ $ cat /tmp/release/release-manifests/image-references
3737
"creationTimestamp": "2019-06-03T14:49:14Z",
3838
"annotations": {
3939
"release.openshift.io/from-image-stream": "ocp/4.1-art-latest-2019-05-31-174150",
40-
"release.openshift.io/from-release": "registry.svc.ci.openshift.org/ocp/release:4.1.0-0.nightly-2019-05-31-174150"
40+
"release.openshift.io/from-release": "registry.ci.openshift.org/ocp/release:4.1.0-0.nightly-2019-05-31-174150"
4141
}
4242
},
4343
"spec": {

0 commit comments

Comments
 (0)