diff --git a/data/data/rhcos-amd64.json b/data/data/rhcos-amd64.json index 3f47372dd95..13d1676cf10 100644 --- a/data/data/rhcos-amd64.json +++ b/data/data/rhcos-amd64.json @@ -71,7 +71,7 @@ "image": "rhcos-47.84.202206131038-0-azure.x86_64.vhd", "url": "https://rhcos.blob.core.windows.net/imagebucket/rhcos-47.84.202206131038-0-azure.x86_64.vhd" }, - "baseURI": "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.7/47.84.202206131038-0/x86_64/", + "baseURI": "https://rhcos.mirror.openshift.com/art/storage/releases/rhcos-4.7/47.84.202206131038-0/x86_64/", "buildid": "47.84.202206131038-0", "gcp": { "image": "rhcos-47-84-202206131038-0-gcp-x86-64", @@ -166,4 +166,4 @@ }, "ostree-commit": "d1d016103377968db034641fd7430ac23c56779c78448932bbddd2ce738f66a6", "ostree-version": "47.84.202206131038-0" -} \ No newline at end of file +} diff --git a/data/data/rhcos-ppc64le.json b/data/data/rhcos-ppc64le.json index eb439e18756..f0996e60e80 100644 --- a/data/data/rhcos-ppc64le.json +++ b/data/data/rhcos-ppc64le.json @@ -1,5 +1,5 @@ { - "baseURI": "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.7-ppc64le/47.84.202206131039-0/ppc64le/", + "baseURI": "https://rhcos.mirror.openshift.com/art/storage/releases/rhcos-4.7-ppc64le/47.84.202206131039-0/ppc64le/", "buildid": "47.84.202206131039-0", "images": { "live-initramfs": { @@ -58,4 +58,4 @@ }, "ostree-commit": "4e8af1890c494412d2e81295bce5493bf74bb4bde931f49688e5740bcb32b99b", "ostree-version": "47.84.202206131039-0" -} \ No newline at end of file +} diff --git a/data/data/rhcos-s390x.json b/data/data/rhcos-s390x.json index dd33acdaa2d..9ada956d980 100644 --- a/data/data/rhcos-s390x.json +++ b/data/data/rhcos-s390x.json @@ -1,5 +1,5 @@ { - "baseURI": "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.7-s390x/47.84.202206131037-0/s390x/", + "baseURI": "https://rhcos.mirror.openshift.com/art/storage/releases/rhcos-4.7-s390x/47.84.202206131037-0/s390x/", "buildid": "47.84.202206131037-0", "images": { "dasd": { @@ -65,4 +65,4 @@ }, "ostree-commit": "5862c745055acc1cf6b639d0a5dd595617f574ab65967afc1c54d381623cc992", "ostree-version": "47.84.202206131037-0" -} \ No newline at end of file +} diff --git a/data/data/rhcos.json b/data/data/rhcos.json index 3f47372dd95..13d1676cf10 100644 --- a/data/data/rhcos.json +++ b/data/data/rhcos.json @@ -71,7 +71,7 @@ "image": "rhcos-47.84.202206131038-0-azure.x86_64.vhd", "url": "https://rhcos.blob.core.windows.net/imagebucket/rhcos-47.84.202206131038-0-azure.x86_64.vhd" }, - "baseURI": "https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.7/47.84.202206131038-0/x86_64/", + "baseURI": "https://rhcos.mirror.openshift.com/art/storage/releases/rhcos-4.7/47.84.202206131038-0/x86_64/", "buildid": "47.84.202206131038-0", "gcp": { "image": "rhcos-47-84-202206131038-0-gcp-x86-64", @@ -166,4 +166,4 @@ }, "ostree-commit": "d1d016103377968db034641fd7430ac23c56779c78448932bbddd2ce738f66a6", "ostree-version": "47.84.202206131038-0" -} \ No newline at end of file +} diff --git a/hack/update-rhcos-bootimage.py b/hack/update-rhcos-bootimage.py index 50540a96c2c..2e7dede1ea4 100755 --- a/hack/update-rhcos-bootimage.py +++ b/hack/update-rhcos-bootimage.py @@ -1,12 +1,12 @@ #!/usr/bin/env python3 -# Usage: ./hack/update-rhcos-bootimage.py https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com/art/storage/releases/rhcos-4.7/47.84.202109171532-0/x86_64/meta.json amd64 +# Usage: ./hack/update-rhcos-bootimage.py https://rhcos.mirror.openshift.com/art/storage/releases/rhcos-4.7/47.84.202109171532-0/x86_64/meta.json amd64 import codecs,os,sys,json,argparse import urllib.parse import urllib.request # An app running in the CI cluster exposes this public endpoint about ART RHCOS # builds. Do not try to e.g. point to RHT-internal endpoints. -RHCOS_RELEASES_APP = 'https://rhcos-redirector.apps.art.xq1c.p1.openshiftapps.com' +RHCOS_RELEASES_APP = 'https://rhcos.mirror.openshift.com' parser = argparse.ArgumentParser() parser.add_argument("meta", action='store')