Skip to content

Commit 8aac716

Browse files
authored
Merge pull request #59864 from sheriff-rh/OSDOCS-5822
2 parents 1f25139 + 57a3df8 commit 8aac716

29 files changed

+59
-60
lines changed

_unused_topics/images-using-images-s2i-php-pulling-images.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ The RHEL 8 images are available through the Red Hat Registry.
1717

1818
* To pull the RHEL 8 image, enter the following command for the version of PHP you want:
1919

20-
.PHP `7.2`
20+
.PHP `8.1`
2121
[source,terminal]
2222
----
23-
$ podman pull registry.redhat.io/ubi8/php-72:latest
23+
$ podman pull registry.redhat.io/ubi9/php-81:latest
2424
----
2525
+
2626
.PHP `7.3`

_unused_topics/images-using-images-s2i-python-pulling-images.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ $ podman pull egistry.redhat.io/rhscl/python-27-rhel7:latest
2828
.Python `3.6`
2929
[source,terminal]
3030
----
31-
$ podman pull registry.redhat.io/ubi8/python-36:latest
31+
$ podman pull registry.redhat.io/ubi9/python-39:latest
3232
----
3333
+
3434
.Python `3.8`

modules/builds-create-custom-build-artifacts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ ENTRYPOINT ["/usr/bin/build.sh"]
3131
+
3232
[source,terminal]
3333
----
34-
FROM registry.access.redhat.com/ubi8/ubi
34+
FROM registry.access.redhat.com/ubi9/ubi
3535
RUN touch /tmp/build
3636
----
3737

modules/builds-create-imagestreamtag.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The benefit of using image stream tags this way is that doing so grants access t
1818
+
1919
[source,terminal]
2020
----
21-
$ oc tag --source=docker registry.redhat.io/ubi8/ubi:latest ubi:latest -n openshift
21+
$ oc tag --source=docker registry.redhat.io/ubi9/ubi:latest ubi:latest -n openshift
2222
----
2323
+
2424
[TIP]
@@ -35,7 +35,7 @@ spec:
3535
tags:
3636
- from:
3737
kind: DockerImage
38-
name: registry.redhat.io/ubi8/ubi:latest
38+
name: registry.redhat.io/ubi9/ubi:latest
3939
name: latest
4040
referencePolicy:
4141
type: Source
@@ -46,7 +46,7 @@ spec:
4646
+
4747
[source,terminal]
4848
----
49-
$ oc tag --source=docker registry.redhat.io/ubi8/ubi:latest ubi:latest
49+
$ oc tag --source=docker registry.redhat.io/ubi9/ubi:latest ubi:latest
5050
----
5151
+
5252
[TIP]
@@ -62,7 +62,7 @@ spec:
6262
tags:
6363
- from:
6464
kind: DockerImage
65-
name: registry.redhat.io/ubi8/ubi:latest
65+
name: registry.redhat.io/ubi9/ubi:latest
6666
name: latest
6767
referencePolicy:
6868
type: Source

modules/builds-running-entitled-builds-with-sharedsecret-objects.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ spec:
8484
runPolicy: Serial
8585
source:
8686
dockerfile: |
87-
FROM registry.redhat.io/ubi8/ubi:latest
87+
FROM registry.redhat.io/ubi9/ubi:latest
8888
RUN ls -la /etc/pki/entitlement
8989
RUN rm /etc/rhsm-host
9090
RUN yum repolist --disablerepo=*
@@ -127,16 +127,16 @@ Some sections of the following output have been replaced with `...`
127127
build.build.openshift.io/my-csi-bc-1 started
128128
Caching blobs under "/var/cache/blobs".
129129
130-
Pulling image registry.redhat.io/ubi8/ubi:latest ...
131-
Trying to pull registry.redhat.io/ubi8/ubi:latest...
130+
Pulling image registry.redhat.io/ubi9/ubi:latest ...
131+
Trying to pull registry.redhat.io/ubi9/ubi:latest...
132132
Getting image source signatures
133133
Copying blob sha256:5dcbdc60ea6b60326f98e2b49d6ebcb7771df4b70c6297ddf2d7dede6692df6e
134134
Copying blob sha256:8671113e1c57d3106acaef2383f9bbfe1c45a26eacb03ec82786a494e15956c3
135135
Copying config sha256:b81e86a2cb9a001916dc4697d7ed4777a60f757f0b8dcc2c4d8df42f2f7edb3a
136136
Writing manifest to image destination
137137
Storing signatures
138138
Adding transient rw bind mount for /run/secrets/rhsm
139-
STEP 1/9: FROM registry.redhat.io/ubi8/ubi:latest
139+
STEP 1/9: FROM registry.redhat.io/ubi9/ubi:latest
140140
STEP 2/9: RUN ls -la /etc/pki/entitlement
141141
total 360
142142
drwxrwxrwt. 2 root root 80 Feb 3 20:28 .

modules/builds-strategy-docker-entitled-satellite.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Use the following as an example Dockerfile to install content with Satellite:
1717

1818
[source,terminal]
1919
----
20-
FROM registry.redhat.io/ubi8/ubi:latest
20+
FROM registry.redhat.io/ubi9/ubi:latest
2121
RUN dnf search kernel-devel --showduplicates && \
2222
dnf install -y kernel-devel
2323
----

modules/builds-strategy-docker-entitled-subman.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the following as an example Dockerfile to install content with the Subscript
1818

1919
[source,terminal]
2020
----
21-
FROM registry.redhat.io/ubi8/ubi:latest
21+
FROM registry.redhat.io/ubi9/ubi:latest
2222
RUN dnf search kernel-devel --showduplicates && \
2323
dnf install -y kernel-devel
2424
----

modules/compliance-results.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ metadata:
6868
spec:
6969
containers:
7070
- name: pv-extract-pod
71-
image: registry.access.redhat.com/ubi8/ubi
71+
image: registry.access.redhat.com/ubi9/ubi
7272
command: ["sleep", "3000"]
7373
volumeMounts:
7474
- mountPath: "/workers-scan-results"

modules/getting-started-cli-deploying-python-app.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ $ oc new-app python~https://github.com/openshift-roadshow/nationalparks-py.git -
2929
+
3030
[source,text]
3131
----
32-
--> Found image 0406f6c (13 days old) in image stream "openshift/python" under tag "3.9-ubi8" for "python"
32+
--> Found image 0406f6c (13 days old) in image stream "openshift/python" under tag "3.9-ubi9" for "python"
3333
3434
Python 3.9
3535
----------

modules/images-configuration-registry-mirror.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ For example, after installing the skopeo RPM package on a Red Hat Enterprise Lin
8484
[source,terminal]
8585
----
8686
$ skopeo copy \
87-
docker://registry.access.redhat.com/ubi8/ubi-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187adb32e89fd83fa455ebaa6 \
87+
docker://registry.access.redhat.com/ubi9/ubi-minimal:latest@sha256:5cf... \
8888
docker://example.io/example/ubi-minimal
8989
----
9090
+
91-
In this example, you have a container image registry that is named `example.io` with an image repository named `example` to which you want to copy the `ubi8/ubi-minimal` image from `registry.access.redhat.com`. After you create the registry, you can configure your {product-title} cluster to redirect requests made of the source repository to the mirrored repository.
91+
In this example, you have a container image registry that is named `example.io` with an image repository named `example` to which you want to copy the `ubi9/ubi-minimal` image from `registry.access.redhat.com`. After you create the registry, you can configure your {product-title} cluster to redirect requests made of the source repository to the mirrored repository.
9292

9393
. Log in to your {product-title} cluster.
9494

@@ -99,13 +99,13 @@ In this example, you have a container image registry that is named `example.io`
9999
apiVersion: config.openshift.io/v1 <1>
100100
kind: ImageDigestMirrorSet <2>
101101
metadata:
102-
name: ubi8repo
102+
name: ubi9repo
103103
spec:
104104
imageDigestMirrors: <3>
105105
- mirrors:
106106
- example.io/example/ubi-minimal <4>
107107
- example.com/example/ubi-minimal <5>
108-
source: registry.access.redhat.com/ubi8/ubi-minimal <6>
108+
source: registry.access.redhat.com/ubi9/ubi-minimal <6>
109109
mirrorSourcePolicy: AllowContactingSource <7>
110110
- mirrors:
111111
- mirror.example.com/redhat
@@ -267,7 +267,7 @@ short-name-mode = ""
267267
pull-from-mirror = "digest-only"
268268
[[registry]]
269269
prefix = ""
270-
location = "registry.access.redhat.com/ubi8/ubi-minimal"
270+
location = "registry.access.redhat.com/ubi9/ubi-minimal"
271271
blocked = true <4>
272272

273273
[[registry.mirror]]
@@ -284,7 +284,7 @@ short-name-mode = ""
284284
+
285285
[source,terminal]
286286
----
287-
sh-4.2# podman pull --log-level=debug registry.access.redhat.com/ubi8/ubi-minimal@sha256:5cfbaf45ca96806917830c183e9f37df2e913b187adb32e89fd83fa455ebaa6
287+
sh-4.2# podman pull --log-level=debug registry.access.redhat.com/ubi9/ubi-minimal@sha256:5cf...
288288
----
289289
290290
.Troubleshooting repository mirroring

0 commit comments

Comments
 (0)