-
Story
-
Resolution: Done
-
Critical
-
None
-
None
-
None
-
False
-
-
False
-
-
-
OCMUI Core Sprint 262, OCMUI Core Sprint 263
In the downloads page (https://console.redhat.com/openshift/downloads#tool-mirror-registry) the architecture type dropdown for "mirror registry for Red Hat OpenShift" needs to include the s390x architecture located here.
- Looks like s390x is already supported installLinks.mjs#L413-413
- I believe we would need to update tools.MIRROR_REGISTRY config to something like
[tools.MIRROR_REGISTRY]: { [channels.STABLE]: { [architectures.x86]: { [operatingSystems.linux]: `${MIRROR_MIRROR_REGISTRY_LATEST}/mirror-registry-amd64.tar.gz`, }, [architectures.ppc]: { [operatingSystems.linux]: `${MIRROR_MIRROR_REGISTRY_LATEST}/mirror-registry-ppc64le.tar.gz`, }, --- New ---- [architectures.s390x]: { [operatingSystems.linux]: `${MIRROR_MIRROR_REGISTRY_LATEST}/mirror-registry-s390x.tar.gz`, }, }, },
- Note, the UI code points to '...mirror-registry/latest' and not 'mirror-registry/2.0.2/', but they seem identical.
`const MIRROR_MIRROR_REGISTRY_LATEST = 'https://mirror.openshift.com/pub/cgw/mirror-registry/latest`;
Hi bcaton@redhat.com can you help us match s390x binaries to OSs?
const architectures = { arm: 'arm', x86: 'x86', ppc: 'ppc', s390x: 's390x', }; const operatingSystems = { linux: 'linux', rhel9: 'rhel-9', rhel9_fips: 'rhel-9-fips', rhel8: 'rhel-8', mac: 'mac', windows: 'windows', };
- mirror-registry-s390x.tar.gz: Arch: s390, OS: linux
- mirror-registry-s390x.tar.gz.sha256 ??
- mirror-registry-s390x.tar.gz.asc ??
- mirror-registry-s390x.tar.gz.asc.sha256 ??