Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Commit 0a0e774

Browse files
authored
Merge pull request #1033 from pohly/openshift-4.8-ga
test: update to OpenShift 4.8 GA
2 parents edeee2f + a364454 commit 0a0e774

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/start-stop-openshift.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# download, so you need to grab the client and then use that to fetch the
3030
# installer. Intuitive design, right? :-)
3131
#
32-
# https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp-dev-preview/4.8.0-0.nightly-2021-05-26-071911/openshift-client-linux.tar.gz
32+
# https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/4.8.3/openshift-client-linux-4.8.3.tar.gz
3333
#
3434
# That one definitely works. All the nightlies after that date
3535
# theoretically should too, but I don't yet have a CI that explicitly
@@ -57,16 +57,16 @@
5757
# Look at the release.txt for the installer nightly (in this case the same
5858
# nightly as the client) and grab the 'pull from' line:
5959
#
60-
# http://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp-dev-preview/4.8.0-0.nightly-2021-05-26-071911/release.txt
60+
# https://mirror.openshift.com/pub/openshift-v4/x86_64/clients/ocp/4.8.3/release.txt
6161
#
6262
# "Pull From:
63-
# quay.io/openshift-release-dev/ocp-release-nightly@sha256:ab62a4104ff3d2a287f4167962241352c392a007d675ecdbc6f195da01d18f08"
63+
# quay.io/openshift-release-dev/ocp-release@sha256:9232aeea4bf938571fdfad7085428bcac4ffdaffa5559209ad8bca20fa37a2f6"
6464
#
6565
# then feed that url to the client:
6666
#
6767
# ./oc adm release -a /path/to/pull_secret.json extract
68-
# quay.io/openshift-release-dev/ocp-release-nightly@sha256:ab62a4104ff3d2a287f4167962241352c392a007d675ecdbc6f195da01d18f08
69-
# --command=openshift-baremetal-install -to /path/openshift-baremetal-install
68+
# quay.io/openshift-release-dev/ocp-release@sha256:9232aeea4bf938571fdfad7085428bcac4ffdaffa5559209ad8bca20fa37a2f6
69+
# --command=openshift-baremetal-install --to /path/openshift-baremetal-install
7070
#
7171
# Patrick:
7272
# The libvirt libs on Debian Buster are too old for that binary.
@@ -238,9 +238,9 @@ EOF
238238
while true; do
239239
if $VIRSH net-list --all | grep -q "^ $TEST_VIRT_CLUSTER_NAME-.* active"; then
240240
# This accesses the "oauth-openshift" service through the Ingress service
241-
# on the first node.
241+
# on the first node. Same for console-openshift-console (added in 4.8 GA).
242242
run $VIRSH net-update $($VIRSH net-list --name | grep "^$TEST_VIRT_CLUSTER_NAME-") \
243-
add dns-host "<host ip='192.168.126.51'><hostname>oauth-openshift.apps.$TEST_VIRT_CLUSTER_NAME.$TEST_VIRT_CLUSTER_DOMAIN</hostname></host>"
243+
add dns-host "<host ip='192.168.126.51'><hostname>oauth-openshift.apps.$TEST_VIRT_CLUSTER_NAME.$TEST_VIRT_CLUSTER_DOMAIN</hostname><hostname>console-openshift-console.apps.$TEST_VIRT_CLUSTER_NAME.$TEST_VIRT_CLUSTER_DOMAIN</hostname></host>"
244244
exit 0
245245
fi
246246
sleep 1

0 commit comments

Comments
 (0)